watchyourlan/backend/internal/web/index.go
2025-09-05 06:10:16 +07:00

12 lines
148 B
Go

package web
import (
"net/http"
"github.com/gin-gonic/gin"
)
func indexHandler(c *gin.Context) {
c.HTML(http.StatusOK, "index.html", true)
}