Select the types of activity you want to include in your feed.
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}