17 lines
287 B
Go
17 lines
287 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"qnc-server/core"
|
||
|
"qnc-server/db"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
core.Viper() // 读取配置文件
|
||
|
//core.InitWeChatPay()
|
||
|
core.InitMPWeChatPay()
|
||
|
core.InitMPH5WeChatPay()
|
||
|
core.InitAliPay()
|
||
|
db.InitGorm() // 初始化连接数据库
|
||
|
core.RunServer() // 启动服务
|
||
|
}
|