enterprise/cmd/enterprise.go

36 lines
584 B
Go
Raw Normal View History

2023-08-04 11:13:41 +08:00
package main
import (
"enterprise/common/config"
"enterprise/common/global"
2023-08-09 22:00:55 +08:00
"enterprise/common/weixin"
2023-08-04 11:13:41 +08:00
"enterprise/server"
"enterprise/worker"
)
func main() {
config.LoadServerConfig()
global.InitGlobal()
if err := worker.Init(); err != nil {
panic(err)
}
if err := server.Start(); err != nil {
panic(err)
}
}
2023-08-08 23:54:30 +08:00
func main2() {
config.LoadServerConfig()
2023-08-09 22:00:55 +08:00
//global.InitGlobal()
2023-08-08 23:54:30 +08:00
2023-08-09 22:00:55 +08:00
pay := weixin.NewQyPay()
if err := pay.PayRedMoney(&weixin.RedMoneyReq{
TotalAmount: 200,
Title: "加班补贴",
Userid: "jiangyong",
}); err != nil {
2023-08-08 23:54:30 +08:00
panic(err)
}
}