Difficult-Rocket/Difficult_Rocket/api/__init__.py

33 lines
739 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-05 00:50:05 +08:00
from .translate import Lang
2021-09-28 16:32:38 +08:00
from .delivery import Delivery
from .new_thread import new_thread
# lazy之后之前全部导入的(太多了写不动__all__了)
from .Exp import *
from .tools import *
from .calculation import *
from .scientific_unit import *
2021-09-02 22:47:10 +08:00
2021-09-05 00:50:05 +08:00
__all__ = ['TexturesError',
'LanguageError',
'TestError',
2021-09-05 00:50:05 +08:00
'new_thread',
2021-09-02 22:47:10 +08:00
'Delivery',
'load_file',
2021-09-05 00:50:05 +08:00
'Lang']
2021-09-28 16:32:38 +08:00