feat: add charge page

This commit is contained in:
Rogee
2024-12-12 19:46:59 +08:00
parent 38a45958bd
commit 3ce3c9ee84
5 changed files with 68 additions and 0 deletions

View File

@@ -28,4 +28,5 @@ func (r *Router) Register(router fiber.Router) {
group := router.Group(r.Name())
group.Get("info", r.controller.Info)
group.Patch("charge/:code", r.controller.Charge)
group.Get("codes", r.controller.GetChargeCodes)
}