1 Star 0 Fork 0

虎不拉/waomao

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 675 Bytes
一键复制 编辑 原始数据 按行查看 历史
虎不拉 提交于 2022-11-19 00:11 . V0.0.1.1 Hello,World!
package main
import (
"fmt"
"gitee.com/hubula/waomao/bootstrap"
"gitee.com/hubula/waomao/conf"
"gitee.com/hubula/waomao/web/middleware/identity"
"gitee.com/hubula/waomao/web/routes"
)
var port = 8080
func newApp() *bootstrap.Bootstrapper {
// 初始化应用
app := bootstrap.New("Go抽奖系统", "一凡Sir")
app.Bootstrap()
app.Configure(identity.Configure, routes.Configure)
return app
}
func main() {
// 服务器集群的时候才需要区分这项设置
// 比如:根据服务器的IP、名称、端口号等,或者运行的参数
if port == 8080 {
conf.RunningCrontabService = true
}
app := newApp()
app.Listen(fmt.Sprintf(":%d", port))
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/hubula/waomao.git
git@gitee.com:hubula/waomao.git
hubula
waomao
waomao
a72f675cdb8e

搜索帮助

0d507c66 1850385 C8b1a773 1850385