summaryrefslogtreecommitdiff
path: root/internal/routers
diff options
context:
space:
mode:
authorCara Salter <cara@devcara.com>2023-09-01 10:08:55 -0400
committerCara Salter <cara@devcara.com>2023-09-01 10:08:55 -0400
commit5036788df84b3963dfff174161224f88d1dfd59d (patch)
tree0224de4aca9ba019c7d6fbf03ebde819eb718904 /internal/routers
parentcf2a9e9c8c78dd175620a32f3292e5a56f6abc28 (diff)
downloadhkgi-5036788df84b3963dfff174161224f88d1dfd59d.tar.gz
hkgi-5036788df84b3963dfff174161224f88d1dfd59d.zip
setup basic authenticationHEADmaster
Diffstat (limited to 'internal/routers')
-rw-r--r--internal/routers/hkgi.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/internal/routers/hkgi.go b/internal/routers/hkgi.go
index 942bc5a..46809c2 100644
--- a/internal/routers/hkgi.go
+++ b/internal/routers/hkgi.go
@@ -1,8 +1,10 @@
package routers
-import "github.com/gofiber/fiber/v2"
+import (
+ "github.com/gofiber/fiber/v2"
+)
-func SetupHkgiRoutes(router fiber.Router) {
+func SetupHkgiRoutes(router fiber.App) {
hkgi := router.Group("/hkgi")
hkgi.Get("/getstead", func(c *fiber.Ctx) error {})