| 6 | ) |
| 7 | |
| 8 | type pluginPrinter struct { |
| 9 | roles []models.Role |
| 10 | userLister func(spaceGUID string, role models.Role) ([]models.UserFields, error) |
| 11 | users userCollection |
| 12 | printer func([]userWithRoles) |
| 13 | } |
| 14 | |
| 15 | type userCollection map[string]userWithRoles |
| 16 |
nothing calls this directly
no outgoing calls
no test coverage detected