Difficult-Rocket/Difficult_Rocket/api/__init__.py

24 lines
423 B
Python
Raw Normal View History

2021-09-08 23:38:34 +08:00
# -------------------------------
# Difficult Rocket
2023-01-20 14:08:12 +08:00
# Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
2021-09-08 23:38:34 +08:00
# All rights reserved
# -------------------------------
2021-09-02 22:47:10 +08:00
"""
writen by shenjackyuanjie
mail: 3695888@qq.com
github: @shenjackyuanjie
gitee: @shenjackyuanjie
"""
2023-06-17 00:06:39 +08:00
__all__ = [
2023-12-03 16:54:07 +08:00
"exception",
2023-06-17 00:06:39 +08:00
# 错误类定义
2023-12-03 16:54:07 +08:00
"screen",
2023-06-17 00:06:39 +08:00
# screen api
2023-12-03 16:54:07 +08:00
"types",
2023-06-17 00:06:39 +08:00
# 类型定义
2023-12-03 16:54:07 +08:00
"mod",
2023-06-17 00:06:39 +08:00
# mod api
]