diff --git a/internal/api/http/category/get_all.go b/internal/api/http/category/get_all.go index 64e9869..be13c90 100644 --- a/internal/api/http/category/get_all.go +++ b/internal/api/http/category/get_all.go @@ -15,7 +15,6 @@ func GetAll( router.Get("/category", func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() subsPlan, err := categorySvc.GetAll() - // subsPlan, err := categorySvc.GetAll() if err != nil { response.ResponseWithErrorCode( ctx, diff --git a/internal/api/http/content/module.go b/internal/api/http/content/module.go deleted file mode 100644 index c1f603c..0000000 --- a/internal/api/http/content/module.go +++ /dev/null @@ -1,5 +0,0 @@ -package contenthttp - -import "go.uber.org/fx" - -var Module = fx.Module("content-api", fx.Invoke())