Files
eagle/internal/web/index.go
2021-12-18 23:33:00 +08:00

16 lines
194 B
Go

package web
import (
"net/http"
"github.com/gin-gonic/gin"
)
// Index home page
func Index(c *gin.Context) {
c.HTML(http.StatusOK, "index", gin.H{
"title": "首页",
"ctx": c,
})
}