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