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

Configure Feed

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

at main 10 lines 230 B view raw
1import * as l from "./external.ts"; 2 3export { l }; 4export * from "./external.ts"; 5export * from "./json/mod.ts"; 6 7if (import.meta.main) { 8 const { default: command } = await import("./cli.ts"); 9 void command.parse(Deno.args); 10}