diff --git a/cmd-ts/main.ts b/cmd-ts/main.ts new file mode 100644 index 0000000..c55bec8 --- /dev/null +++ b/cmd-ts/main.ts @@ -0,0 +1,28 @@ +#!/usr/bin/env runts -- --allow-env --allow-run + +import { + existsPath, + joinPath, + log, + readFileToString, + resolveFilename, +} from "https://global.hatter.ink/script/get/@12/deno-commons-mod.ts"; + +const CMD_CONFIG_FILE = "~/.config/cmd-ts.json"; + +interface CmdConfig { + cmds?: Map; +} + +interface Cmd { + comment?: string; + alias?: string[]; +} + + +async function main() { + // TODO ... +} +await main(); + +// TODO ...