2023-12-14 16:31:04 +08:00
|
|
|
# -*- coding: utf-8 -*-#
|
|
|
|
# -------------------------------------------------------------------------------
|
|
|
|
# Name: __init__.py
|
|
|
|
# Description:
|
|
|
|
# Author: xaoyaoo
|
|
|
|
# Date: 2023/12/14
|
|
|
|
# -------------------------------------------------------------------------------
|
2024-08-03 00:21:16 +08:00
|
|
|
from .remote_server import rs_api
|
|
|
|
from .local_server import ls_api
|
|
|
|
from .utils import get_conf, set_conf
|
2023-12-14 16:31:04 +08:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
pass
|