refactor(cli): remove standalone cli subcommands

This commit is contained in:
Julien Oculi 2024-03-29 16:27:15 +01:00
parent 3e128cf80d
commit b523a38362

View file

@ -56,11 +56,3 @@ export const cmd = new Command()
await send(mail) await send(mail)
}, },
) )
if (import.meta.main) {
if (Deno.args.length) {
cmd.parse(Deno.args)
} else {
cmd.showHelp()
}
}