GoLearning/Example/2.Gin_Helloworld_Public_Dist/main.go

21 lines
348 B
Go
Raw Permalink Normal View History

2023-12-14 03:45:47 +08:00
package main
import (
"github.com/gin-gonic/gin"
)
func main() {
// 创建Gin引擎
r := gin.Default()
2023-12-14 11:32:04 +08:00
// 设置静态文件目录
r.Static("/static", "./public/dist/*")
2023-12-14 03:45:47 +08:00
// 定义GET请求处理程序返回HTML响应
r.GET("/", func(c *gin.Context) {
2023-12-14 11:32:04 +08:00
c.File("./public/dist/index.html")
2023-12-14 03:45:47 +08:00
})
// 启动HTTP服务器
r.Run(":8080")
}