Skip to content

Commit

Permalink
feat: refactor to support versioning of api/v1
Browse files Browse the repository at this point in the history
  • Loading branch information
nunenuh committed Sep 1, 2023
1 parent 84dc537 commit fafe653
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions internal/router/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package router
import (
"github.com/gofiber/fiber/v2"
auth "github.com/nunenuh/iquote-fiber/internal/auth/api"
author "github.com/nunenuh/iquote-fiber/internal/author/api"
category "github.com/nunenuh/iquote-fiber/internal/category/api"
quote "github.com/nunenuh/iquote-fiber/internal/quote/api"
user "github.com/nunenuh/iquote-fiber/internal/user/api"
author "github.com/nunenuh/iquote-fiber/internal/author/api/v1"
category "github.com/nunenuh/iquote-fiber/internal/category/api/v1"
quote "github.com/nunenuh/iquote-fiber/internal/quote/api/v1"
user "github.com/nunenuh/iquote-fiber/internal/user/api/v1"
"go.uber.org/fx"
)

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit fafe653

Please sign in to comment.