summaryrefslogtreecommitdiff
path: root/internal/routers/hkgi.go
blob: 942bc5af5b28e143ed841074585526a32e7a8301 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package routers

import "github.com/gofiber/fiber/v2"

func SetupHkgiRoutes(router fiber.Router) {
	hkgi := router.Group("/hkgi")

	hkgi.Get("/getstead", func(c *fiber.Ctx) error {})

	hkgi.Get("/activity", func(c *fiber.Ctx) error {})

	hkgi.Get("/users", func(c *fiber.Ctx) error {})

	hkgi.Get("/manifest", func(c *fiber.Ctx) error {})

	// POST
	hkgi.Post("/useitem", func(c *fiber.Ctx) error {})

	hkgi.Post("/craft", func(c *fiber.Ctx) error {})

}