DEVELOPMENT ENVIRONMENT

~liljamo/emerwen-web

ref: 4e555b1e3309881de4969794eff19e5275430069 emerwen-web/internal/handlers/index.go -rw-r--r-- 568 bytes
4e555b1eJonni Liljamo feat: UI for new/patch/delete worker/target 3 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)
	}
}