(args string, retVal *string)
| 291 | } |
| 292 | |
| 293 | func (cmd *CliRpcCmd) AccessToken(args string, retVal *string) error { |
| 294 | token, err := cmd.repoLocator.GetAuthenticationRepository().RefreshAuthToken() |
| 295 | if err != nil { |
| 296 | return err |
| 297 | } |
| 298 | |
| 299 | *retVal = token |
| 300 | |
| 301 | return nil |
| 302 | } |
| 303 | |
| 304 | func (cmd *CliRpcCmd) GetApp(appName string, retVal *plugin_models.GetAppModel) error { |
| 305 | deps := commandregistry.NewDependency(cmd.stdout, cmd.logger, dialTimeout) |
nothing calls this directly
no test coverage detected