feat: implement geometry and project management modules with associated controllers, services, and routes

This commit is contained in:
2026-05-24 19:34:46 +07:00
parent ff56ba3d32
commit 2fa420492c
11 changed files with 382 additions and 3 deletions

View File

@@ -113,7 +113,7 @@ func (s *FiberServer) SetupServer(
entityService := services.NewEntityService(entityRepo)
geometryService := services.NewGeometryService(geometryRepo)
wikiService := services.NewWikiService(wikiRepo)
projectService := services.NewProjectService(projectRepo)
projectService := services.NewProjectService(projectRepo, redis)
commitService := services.NewCommitService(poolPg, commitRepo, projectRepo, redis)
submissionService := services.NewSubmissionService(
submissionRepo, projectRepo, commitRepo,