2
0
mirror of https://github.com/acepanel/helper.git synced 2026-02-04 06:43:15 +08:00
Files
helper/pkg/config/config.go
2026-01-24 16:41:32 +08:00

10 lines
129 B
Go

package config
// Config 全局配置
type Config struct {
Verbose bool
}
// Global 全局配置实例
var Global = &Config{}