(args string, retVal *bool)
| 243 | } |
| 244 | |
| 245 | func (cmd *CliRpcCmd) IsSSLDisabled(args string, retVal *bool) error { |
| 246 | *retVal = cmd.cliConfig.IsSSLDisabled() |
| 247 | |
| 248 | return nil |
| 249 | } |
| 250 | |
| 251 | func (cmd *CliRpcCmd) HasOrganization(args string, retVal *bool) error { |
| 252 | *retVal = cmd.cliConfig.HasOrganization() |
nothing calls this directly
no test coverage detected