Feat[BE}: inisiate repport module

This commit is contained in:
aguhh18
2025-12-10 08:23:52 +07:00
parent d7c543bc9d
commit 576f8083a3
7 changed files with 345 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
package repports
import (
"github.com/go-playground/validator/v10"
"github.com/gofiber/fiber/v2"
"gorm.io/gorm"
sRepport "gitlab.com/mbugroup/lti-api.git/internal/modules/repports/services"
)
type RepportModule struct{}
func (RepportModule) RegisterRoutes(router fiber.Router, db *gorm.DB, validate *validator.Validate) {
repportService := sRepport.NewRepportService(validate)
RepportRoutes(router, repportService)
}