summaryrefslogtreecommitdiff
path: root/internal/client/router.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/client/router.go')
-rw-r--r--internal/client/router.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/client/router.go b/internal/client/router.go
index b7c68ad0e..cf00419c5 100644
--- a/internal/client/router.go
+++ b/internal/client/router.go
@@ -39,9 +39,9 @@ func (r *router) Route() {
ginRouter.LoadHTMLGlob("web/template/*")
apiGroup := ginRouter.Group("/api")
-
+
v1 := apiGroup.Group("/v1")
-
+
statusesGroup := v1.Group("/statuses")
statusesGroup.GET(":id", statusGet)
ginRouter.Run()