This commit is contained in:
2026-03-07 03:57:45 +07:00
parent c3e5654ab4
commit 9e0a19d25a
10 changed files with 6 additions and 6 deletions
+7
View File
@@ -0,0 +1,7 @@
package pdf
import "evening_detective/internal/models"
type IPDFGenerator interface {
CreateTeamsPDF(teams []*models.Team) ([]byte, error)
}