Files
forge/internal/opt/opt.go
2025-11-24 18:38:21 +08:00

14 lines
155 B
Go

package opt
type config struct {
Debug bool
Make struct {
DisableDependencyCheck bool
Dir string
}
}
var (
Cfg = &config{}
)