mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-12-08 17:01:15 +00:00
14 lines
192 B
Python
14 lines
192 B
Python
from .webserver import ApiServer
|
|
|
|
|
|
def get_rpc():
|
|
return ApiServer._rpc
|
|
|
|
|
|
def get_config():
|
|
return ApiServer._config
|
|
|
|
|
|
def get_api_config():
|
|
return ApiServer._config['api_server']
|