🎨 大部分的 make 指令

This commit is contained in:
zhaoyupeng
2025-11-24 18:37:44 +08:00
commit 27fa38aef0
38 changed files with 4356 additions and 0 deletions

13
internal/opt/opt.go Normal file
View File

@@ -0,0 +1,13 @@
package opt
type config struct {
Debug bool
Make struct {
DisableDependencyCheck bool
Dir string
}
}
var (
Cfg = &config{}
)