mirror of
https://github.com/beilunyang/moemail.git
synced 2026-09-04 14:56:37 +08:00
feat(cli): scaffold CLI package with commander
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
committed by
BeilunYang
co-authored by
Claude Sonnet 4.6
parent
0c096f6c9f
commit
5b7ba3e924
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env node
|
||||
import { Command } from "commander";
|
||||
|
||||
const program = new Command();
|
||||
|
||||
program
|
||||
.name("moemail")
|
||||
.description("MoeMail CLI — Agent-friendly temporary email tool")
|
||||
.version("0.1.0")
|
||||
.option("--json", "output as JSON");
|
||||
|
||||
program.parse();
|
||||
Reference in New Issue
Block a user