Add License

This commit is contained in:
aditya.siregar
2024-07-28 13:00:01 +07:00
parent dfed117d90
commit 8966037024
11 changed files with 506 additions and 1 deletions
+2
View File
@@ -2,6 +2,7 @@ package routes
import (
"furtuna-be/internal/handlers/http/branch"
"furtuna-be/internal/handlers/http/license"
mdtrns "furtuna-be/internal/handlers/http/midtrans"
"furtuna-be/internal/handlers/http/order"
"furtuna-be/internal/handlers/http/oss"
@@ -56,6 +57,7 @@ func RegisterPrivateRoutes(app *app.Server, serviceManager *services.ServiceMana
partner.NewHandler(serviceManager.PartnerSvc),
site.NewHandler(serviceManager.SiteSvc),
mdtrns.NewHandler(serviceManager.OrderSvc),
license.NewHandler(serviceManager.LicenseSvc),
}
for _, handler := range serverRoutes {