重构架构

This commit is contained in:
2026-02-20 18:44:43 +08:00
parent aba7b68439
commit cc71248ef4
52 changed files with 1404 additions and 2360 deletions

13
cmd/sunhpc/main.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import (
"os"
"sunhpc/internal/cli"
)
func main() {
rootCmd := cli.NewRootCmd()
if err := rootCmd.Execute(); err != nil {
os.Exit(1)
}
}