2026-07-06 17:28:59 +00:00
|
|
|
import { Command } from "../Command";
|
|
|
|
|
import { CommandContext } from "../CommandContext";
|
|
|
|
|
|
|
|
|
|
export class AddFileCommand extends Command
|
|
|
|
|
{
|
|
|
|
|
constructor(){ super( "", "" ); }
|
|
|
|
|
|
2026-07-10 18:18:15 +00:00
|
|
|
async execute( context: CommandContext ): Promise<void>
|
2026-07-06 17:28:59 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|