feat: 更新命令脚本名称,添加 CLI 入口文件,优化用户验证逻辑

This commit is contained in:
2026-03-31 02:05:01 +08:00
parent 5c981f25a7
commit 2fd473a1b1
5 changed files with 11 additions and 3 deletions

8
src/cli.ts Normal file
View File

@@ -0,0 +1,8 @@
import { parse } from '@kevisual/router/commander'
import { app } from './app.ts';
import './route.ts';
parse({
app,
})