| 24 | const maxChoices = 50 |
| 25 | |
| 26 | type Login struct { |
| 27 | ui terminal.UI |
| 28 | config coreconfig.ReadWriter |
| 29 | authenticator authentication.Repository |
| 30 | endpointRepo coreconfig.EndpointRepository |
| 31 | orgRepo organizations.OrganizationRepository |
| 32 | spaceRepo spaces.SpaceRepository |
| 33 | } |
| 34 | |
| 35 | func init() { |
| 36 | commandregistry.Register(&Login{}) |
nothing calls this directly
no outgoing calls
no test coverage detected