2022-02-05 14:55:57 +00:00
|
|
|
package controllers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2022-02-05 19:59:41 +00:00
|
|
|
"git.jamesravey.me/ravenscroftj/indiescrobble/scrobble"
|
2022-02-05 14:55:57 +00:00
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Index(c *gin.Context) {
|
|
|
|
c.HTML(http.StatusOK, "index.tmpl", gin.H{
|
|
|
|
"title": "test",
|
2022-02-05 19:59:41 +00:00
|
|
|
"user": c.GetString("user"),
|
|
|
|
"scrobbleTypes": scrobble.ScrobbleTypeNames,
|
2022-02-05 14:55:57 +00:00
|
|
|
})
|
|
|
|
}
|