1 Star 0 Fork 1

tanml/星座运势后端

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 656 Bytes
一键复制 编辑 原始数据 按行查看 历史
王海涛 提交于 2022-01-04 21:29 . 修正错误信息
package main
import (
"fmt"
"github.com/gin-gonic/gin"
"net/http"
"starWebserver/Global"
"starWebserver/Routers"
)
func main() {
//开启api服务
api := gin.Default()
Routers.SetUpRouter(api)
//服务静态网页
Web := Global.GetWeb()
api.StaticFS(Web.WebUrl, http.Dir(Web.StaticWeb))
api.StaticFS(Web.BackendUrl, http.Dir(Web.StaticBackend))
//转发根目录
api.GET("/", func(c *gin.Context) {
c.Request.URL.Path = Web.WebUrl
api.HandleContext(c)
})
//打印结果开始服务
fmt.Println("http://localhost:" + Web.Port + Web.WebUrl)
fmt.Println("http://localhost:" + Web.Port + Web.BackendUrl)
_ = api.Run(":" + Web.Port)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/tanml/constellation-backend.git
[email protected]:tanml/constellation-backend.git
tanml
constellation-backend
星座运势后端
master

搜索帮助