Difficult-Rocket/Difficult_Rocket/api/__init__.py

27 lines
574 B
Python
Raw Normal View History

2021-09-08 23:38:34 +08:00
# -------------------------------
# Difficult Rocket
# Copyright © 2021 by shenjackyuanjie
# All rights reserved
# -------------------------------
2021-09-02 22:47:10 +08:00
"""
writen by shenjackyuanjie
mail: 3695888@qq.com
github: @shenjackyuanjie
gitee: @shenjackyuanjie
"""
2021-09-08 23:38:34 +08:00
2021-09-05 00:50:05 +08:00
from .Exp import TexturesError, LanguageError
2021-09-02 22:47:10 +08:00
from .delivery import Delivery
2021-09-05 00:50:05 +08:00
from .new_thread import new_thread
2021-09-02 22:47:10 +08:00
from .tools import config
2021-09-05 00:50:05 +08:00
from .translate import Lang
2021-09-02 22:47:10 +08:00
2021-09-05 00:50:05 +08:00
__all__ = ['TexturesError',
'LanguageError',
'new_thread',
2021-09-02 22:47:10 +08:00
'Delivery',
2021-09-05 00:50:05 +08:00
'config',
'Lang']