(func(models.Space) bool)
| 17 | |
| 18 | type SpaceRepository interface { |
| 19 | ListSpaces(func(models.Space) bool) error |
| 20 | ListSpacesFromOrg(orgGUID string, spaceFunc func(models.Space) bool) error |
| 21 | FindByName(name string) (space models.Space, apiErr error) |
| 22 | FindByNameInOrg(name, orgGUID string) (space models.Space, apiErr error) |
no outgoing calls
no test coverage detected