feat(acp): add support for /about command (#24649)

This commit is contained in:
Sri Pasumarthi
2026-04-04 00:42:27 -07:00
committed by GitHub
parent fb15a50cf8
commit f16ab73d16
3 changed files with 79 additions and 0 deletions
+2
View File
@@ -10,6 +10,7 @@ import { MemoryCommand } from './commands/memory.js';
import { ExtensionsCommand } from './commands/extensions.js';
import { InitCommand } from './commands/init.js';
import { RestoreCommand } from './commands/restore.js';
import { AboutCommand } from './commands/about.js';
export class CommandHandler {
private registry: CommandRegistry;
@@ -24,6 +25,7 @@ export class CommandHandler {
registry.register(new ExtensionsCommand());
registry.register(new InitCommand());
registry.register(new RestoreCommand());
registry.register(new AboutCommand());
return registry;
}