2019-06-20 20:55:47 -04:00
|
|
|
from lbry.extras.cli import execute_command
|
2022-07-16 00:43:45 -03:00
|
|
|
from lbry.conf import Config
|
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)
|