uauth/internal/opt/config.go

10 lines
88 B
Go
Raw Normal View History

2024-10-23 17:46:15 +08:00
package opt
type config struct {
Debug bool `json:"debug"`
}
var (
Cfg = config{}
)