| 24 | } |
| 25 | |
| 26 | type RPCService struct { |
| 27 | config Config |
| 28 | ui UI |
| 29 | rpcService *rpc.CliRpcService |
| 30 | } |
| 31 | |
| 32 | func NewRPCService(config Config, ui UI) (*RPCService, error) { |
| 33 | isVerbose, logFiles := config.Verbose() |
nothing calls this directly
no outgoing calls
no test coverage detected