13 lines
213 B
Go
13 lines
213 B
Go
package admin
|
|
|
|
import (
|
|
"github.com/gofiber/fiber/v2"
|
|
)
|
|
|
|
func GetPageIndex(c *fiber.Ctx) error {
|
|
return c.Render("admin/index", fiber.Map{})
|
|
}
|
|
|
|
func Setup(app *fiber.App) {
|
|
app.Get("/admin/", GetPageIndex);
|
|
}
|