view app/handlers.go @ 13:e7ab74d2ad88 default tip

Move to mercurial
author Dennis C. M. <dennis@denniscm.com>
date Wed, 04 Jun 2025 09:38:35 +0100
parents aaf85ae1f942
children
line wrap: on
line source

package app

import (
	"net/http"

	"github.com/denniscmcom/pacobot/store"
	"github.com/gin-gonic/gin"
)

func Index(c *gin.Context) {
	c.HTML(http.StatusOK, "index.html", gin.H{
		"title":    "Pacobot",
		"isLogged": store.IsAccessTokenSet(),
	})
}