package route
import (
"github.com/gin-gonic/gin"
"github.com/flosch/pongo2"
"net/http"
)
func Index(c *gin.Context) {
c.HTML(http.StatusOK, "index.html", pongo2.Context{})
}