Difficult-Rocket/Difficult_Rocket/api/__init__.py
2021-09-28 16:32:38 +08:00

27 lines
574 B
Python

# -------------------------------
# Difficult Rocket
# Copyright © 2021 by shenjackyuanjie
# All rights reserved
# -------------------------------
"""
writen by shenjackyuanjie
mail: 3695888@qq.com
github: @shenjackyuanjie
gitee: @shenjackyuanjie
"""
from .tools import config
from .translate import Lang
from .delivery import Delivery
from .new_thread import new_thread
from .Exp import TexturesError, LanguageError
__all__ = ['TexturesError',
'LanguageError',
'new_thread',
'Delivery',
'config',
'Lang']