clear pdf

This commit is contained in:
2026-03-02 02:01:55 +07:00
parent 6cbf29031c
commit caaed14ebc
5 changed files with 25 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)
}