mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 14:31:16 +00:00
42 lines
565 B
Python
42 lines
565 B
Python
|
from module.config.config import AzurLaneConfig
|
||
|
|
||
|
"""
|
||
|
Return default values, since submodules shouldn't have nested submodules
|
||
|
"""
|
||
|
|
||
|
|
||
|
def start_ocr_server_process(*args, **kwargs):
|
||
|
pass
|
||
|
|
||
|
|
||
|
def stop_ocr_server_process(*args, **kwargs):
|
||
|
pass
|
||
|
|
||
|
|
||
|
def load_config(config_name):
|
||
|
return AzurLaneConfig(config_name, '')
|
||
|
|
||
|
|
||
|
def get_config_mod(config_name):
|
||
|
"""
|
||
|
Args:
|
||
|
config_name (str):
|
||
|
"""
|
||
|
return 'alas'
|
||
|
|
||
|
|
||
|
def list_mod():
|
||
|
return []
|
||
|
|
||
|
|
||
|
def mod_instance():
|
||
|
return []
|
||
|
|
||
|
|
||
|
def init_discord_rpc():
|
||
|
pass
|
||
|
|
||
|
|
||
|
def close_discord_rpc():
|
||
|
pass
|