tren/routes/index.go
ngn 7755d6c2fe
All checks were successful
Build and publish the docker image / build (push) Successful in 1m2s
fix code formatting
Signed-off-by: ngn <ngn@ngn.tf>
2025-04-05 23:51:03 +03:00

11 lines
163 B
Go

package routes
import (
"git.ngn.tf/ngn/tren/util"
"github.com/gofiber/fiber/v2"
)
func GET_index(c *fiber.Ctx) error {
return util.Render(c, "index", nil)
}