feat: 完成基本的 model

This commit is contained in:
loveuer
2025-07-10 22:39:41 +08:00
parent 84348f9eaf
commit 99cbe8c523
13 changed files with 400 additions and 14 deletions

View File

@ -11,8 +11,10 @@ var (
root *cobra.Command
)
func Init(ctx context.Context) {
root = rootCmd()
func Init() {
root = rootCmd(
svcCmd(),
)
}
func Execute(ctx context.Context) {