Suite of AT Protocol TypeScript libraries built on web standards
20
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 15 lines 378 B view raw
1import { Command } from "@cliffy/command"; 2import buildCommand from "./cli/build.ts"; 3import installCommand from "./cli/install.ts"; 4 5const command = new Command() 6 .name("lex") 7 .description("AT Protocol Lex tools") 8 .command("build", buildCommand) 9 .command("install", installCommand); 10 11if (import.meta.main) { 12 await command.parse(Deno.args); 13} 14 15export default command;