feat: implement CommitService and register commit management routes in the API server
All checks were successful
Build and Release / release (push) Successful in 1m27s

This commit is contained in:
2026-05-06 10:58:44 +07:00
parent e7b0141684
commit ca05785a24
2 changed files with 10 additions and 1 deletions

View File

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