chores: remove unused code

This commit is contained in:
ericprd 2025-03-05 21:27:37 +08:00
parent 567e0e32ca
commit dd109c8aa0
2 changed files with 0 additions and 6 deletions

View File

@ -15,7 +15,6 @@ func GetAll(
router.Get("/category", func(w http.ResponseWriter, r *http.Request) { router.Get("/category", func(w http.ResponseWriter, r *http.Request) {
ctx := r.Context() ctx := r.Context()
subsPlan, err := categorySvc.GetAll() subsPlan, err := categorySvc.GetAll()
// subsPlan, err := categorySvc.GetAll()
if err != nil { if err != nil {
response.ResponseWithErrorCode( response.ResponseWithErrorCode(
ctx, ctx,

View File

@ -1,5 +0,0 @@
package contenthttp
import "go.uber.org/fx"
var Module = fx.Module("content-api", fx.Invoke())