diff options
author | 2021-03-02 18:26:30 +0100 | |
---|---|---|
committer | 2021-03-02 18:26:30 +0100 | |
commit | d8e8d44d4778bfd3f9e63488edc696e004edfb15 (patch) | |
tree | f5783e994de7abf968866e904741e112c124864e /internal/client/router.go | |
parent | Messing around a bit (diff) | |
download | gotosocial-d8e8d44d4778bfd3f9e63488edc696e004edfb15.tar.xz |
start implementing db interface
Diffstat (limited to 'internal/client/router.go')
-rw-r--r-- | internal/client/router.go | 4 |
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() |