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

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

func SetupHkgiRoutes(router fiber.App) {
	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 {})

}