1 Star 1 Fork 1

Mr.K/goo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
startup.go 568 Bytes
一键复制 编辑 原始数据 按行查看 历史
Mr.K 提交于 2020-05-09 22:40 . 路由优化
package goo
import (
"fmt"
"log"
"net/http"
)
//goo app start
func AppStart(config ConfigInterface, port int) {
config.ConfigConstant(ConfigInstance())
config.ConfigRoute(RoutesInstance())
RoutesInstance().sort()
config.AfterStart()
SessionMangerInstance().Init(&SessionMemoryProvider{sessions: make(map[string]*SessionMemory)}, "GOSESSIONID", 3600)
http.HandleFunc("/", handle)
fmt.Printf("Goo server start on %d.\n", port)
err := http.ListenAndServe(fmt.Sprintf(":%d", port), nil)
if err != nil {
log.Fatal("Goo server start failed: ", err)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/roseboy/goo.git
git@gitee.com:roseboy/goo.git
roseboy
goo
goo
master

搜索帮助