uauth/internal/opt/config.go
2024-10-23 17:46:15 +08:00

10 lines
88 B
Go

package opt
type config struct {
Debug bool `json:"debug"`
}
var (
Cfg = config{}
)