All checks were successful
Build and publish the docker image / build (push) Successful in 58s
Signed-off-by: ngn <ngn@ngn.tf>
11 lines
164 B
Go
11 lines
164 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)
|
|
}
|