You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
249 B
12 lines
249 B
package appConstant
|
|
|
|
import (
|
|
"appNewPlatform/config/app"
|
|
)
|
|
|
|
// 常量
|
|
var (
|
|
AppConfigPath = "./config/yamlConfig/app.yaml" //服务基础配置文件
|
|
Constant_Config app.Server //服务基础配置
|
|
MaxCpuNumber int
|
|
)
|
|
|