13 lines
181 B
Go
13 lines
181 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.tpl", pongo2.Context{})
|
||
|
}
|