feat: implement submission repository and service layers with caching support
Build and Release / release (push) Successful in 1m27s

This commit is contained in:
2026-05-06 10:56:30 +07:00
parent a61cf085ce
commit e7b0141684
2 changed files with 5 additions and 1 deletions
+2
View File
@@ -825,5 +825,7 @@ func (s *submissionService) DeleteSubmission(ctx context.Context, userID string,
return fiber.NewError(fiber.StatusInternalServerError, "Failed to delete submission")
}
_ = s.c.Del(ctx, fmt.Sprintf("project:id:%s", submission.ProjectID))
return nil
}