新的应用平台采用国密SM4算法进行加解密
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.

15 lines
360 B

package appConstant
import (
"appNewPlatform/config/database"
"gorm.io/gorm"
)
//数据库常量配置
var (
ConfigDatabaseConstant = "./config/yamlConfig/database.yaml" //数据库配置文件
CONSTANT_MYSQL database.MysqlSetUp //数据库预设
CONSTANT_DB_Master *gorm.DB //主数据库
)