package pdf import "evening_detective/internal/models" type IPDFGenerator interface { CreateTeamsPDF(teams []*models.Team) ([]byte, error) }