1 Star 0 Fork 3

山水/go后台管理系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.go 506 Bytes
一键复制 编辑 原始数据 按行查看 历史
山水 提交于 2022-03-16 11:13 . 第一次提交
package main
import (
"fmt"
"github.com/gin-gonic/gin"
"testGin/config"
"testGin/router"
)
func main() {
config := (&config.Config{}).InIt()
r := gin.New()
//加载模板
r.LoadHTMLGlob("templates/**/**/*")
//设置标签
r.Delims("{[{", "}]}")
//设置静态文件
r.Static("/static", "./static")
//网站图标
r.StaticFile("/favicon.ico", "./favicon.ico")
//加载路由
router.Router(r);
r.Run(":"+fmt.Sprintf("%d",config.System.Port)) // listen and serve on 0.0.0.0:8080
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/lhshanshui/testgo.git
git@gitee.com:lhshanshui/testgo.git
lhshanshui
testgo
go后台管理系统
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385