2019-01-23 10:41:34 -05:00
|
|
|
from lbrynet.conf import Config
|
2019-04-23 15:40:10 -03:00
|
|
|
from lbrynet.extras.cli import execute_command
|
2019-01-22 17:44:17 -05:00
|
|
|
|
|
|
|
|
2019-04-23 15:40:10 -03:00
|
|
|
def daemon_rpc(conf: Config, method: str, **kwargs):
|
|
|
|
return execute_command(conf, method, kwargs, callback=lambda data: data)
|