indiescrobble/controllers/index.go

14 lines
172 B
Go
Raw Normal View History

package controllers
import (
"net/http"
"github.com/gin-gonic/gin"
)
func Index(c *gin.Context) {
c.HTML(http.StatusOK, "index.tmpl", gin.H{
"title": "test",
})
}