mirror of
https://github.com/go-eagle/eagle.git
synced 2025-10-06 00:57:10 +08:00
16 lines
194 B
Go
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,
|
|
})
|
|
}
|