mirror of
https://github.com/yv1ing/gin-admin.git
synced 2025-10-24 10:12:05 +08:00
19 lines
284 B
Go
19 lines
284 B
Go
package config
|
|
|
|
// @Author: yv1ing
|
|
// @Author: me@yvling.cn
|
|
// @Date: 2025/8/28 14:01
|
|
// @Desc: 系统全局配置
|
|
|
|
type globalConfig struct {
|
|
ListenHost string
|
|
ListenPort uint
|
|
SecretKey string
|
|
RootName string
|
|
RootPass string
|
|
|
|
Mysql mysqlConfig
|
|
}
|
|
|
|
var Config *globalConfig
|