33 lines
739 B
Python
33 lines
739 B
Python
# -------------------------------
|
|
# Difficult Rocket
|
|
# Copyright © 2021 by shenjackyuanjie
|
|
# All rights reserved
|
|
# -------------------------------
|
|
|
|
"""
|
|
writen by shenjackyuanjie
|
|
mail: 3695888@qq.com
|
|
github: @shenjackyuanjie
|
|
gitee: @shenjackyuanjie
|
|
"""
|
|
|
|
# 单独导入的(或者就这一个有用的)
|
|
from .translate import Lang
|
|
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 *
|
|
|
|
__all__ = ['TexturesError',
|
|
'LanguageError',
|
|
'TestError',
|
|
'new_thread',
|
|
'Delivery',
|
|
'load_file',
|
|
'Lang']
|
|
|