anote
1import { Keywords } from "../flows/Keywords";2import { Command } from "./Command";3
4export class Cat extends Command {5async execute(): Promise<string> {6if(!this.isValid(Keywords.CAT)) return 'Not valid command.';7const tail: string = this.getTail();8return await this.storage.downloadFromBuffer(tail);9}10}