Start the admin panels.

This commit is contained in:
Zed A. Shaw 2025-07-13 10:42:15 -04:00
parent 736095a5aa
commit 02910b8b93

10
admin/handlers.go Normal file
View file

@ -0,0 +1,10 @@
package admin
func GetPageIndex(c *fiber.Ctx) error {
c.Render("admin/index", fiber.Map{})
}
func Setup(app *fiber.App) {
app.Get("/admin/", GetIndex);
}