1
0
Fork 0
mnemonics/route/index.go

13 lines
182 B
Go

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{})
}