21 lines
484 B
Python
21 lines
484 B
Python
# -------------------------------
|
|
# Difficult Rocket
|
|
# Copyright © 2021-2022 by shenjackyuanjie 3695888@qq.com
|
|
# All rights reserved
|
|
# -------------------------------
|
|
|
|
"""
|
|
writen by shenjackyuanjie
|
|
mail: 3695888@qq.com
|
|
github: @shenjackyuanjie
|
|
gitee: @shenjackyuanjie
|
|
"""
|
|
|
|
# 单独导入的(或者就这一个有用的)
|
|
from .delivery import Delivery
|
|
|
|
# lazy之后之前全部导入的(太多了写不动__all__了)
|
|
from .calculation import *
|
|
from .scientific_unit import *
|
|
|