(limit int)
| 16 | |
| 17 | type OrganizationRepository interface { |
| 18 | ListOrgs(limit int) ([]models.Organization, error) |
| 19 | GetManyOrgsByGUID(orgGUIDs []string) (orgs []models.Organization, apiErr error) |
| 20 | FindByName(name string) (org models.Organization, apiErr error) |
| 21 | Create(org models.Organization) (apiErr error) |
no outgoing calls
no test coverage detected