修改git过滤文件

This commit is contained in:
zyj
2026-03-04 10:14:12 +08:00
parent a9f9330744
commit 89d64cb117
12 changed files with 570 additions and 1 deletions

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

@@ -0,0 +1,13 @@
package main
import (
"os"
"github.com/user/devpack/cmd/devpack/commands"
)
func main() {
if err := commands.Execute(); err != nil {
os.Exit(1)
}
}