DEVELOPMENT ENVIRONMENT

~liljamo/emerwen-web

ref: a20635584f23b381e2f025219d48ef23f2f13324 emerwen-web/internal/handlers/index.go -rw-r--r-- 568 bytes
a2063558Jonni Liljamo chore: update flake inputs 4 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright (C) 2024 Jonni Liljamo <jonni@liljamo.com>
 *
 * This file is licensed under GPL-3.0-or-later, see NOTICE and LICENSE for
 * more information.
 */

package handlers

import (
	"net/http"

	"git.src.quest/~liljamo/emerwen-web/internal/components"
	"git.src.quest/~liljamo/emerwen-web/internal/renderer"
	"github.com/gin-gonic/gin"
)

// Index returns a gin handler for the index route.
func Index() gin.HandlerFunc {
	return func(c *gin.Context) {
		r := renderer.New(BaseContext(c), http.StatusOK, components.Index())
		c.Render(http.StatusOK, r)
	}
}