25 lines
424 B
Python
25 lines
424 B
Python
# -------------------------------
|
|
# Difficult Rocket
|
|
# Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
|
|
# All rights reserved
|
|
# -------------------------------
|
|
|
|
"""
|
|
writen by shenjackyuanjie
|
|
mail: 3695888@qq.com
|
|
github: @shenjackyuanjie
|
|
gitee: @shenjackyuanjie
|
|
"""
|
|
|
|
|
|
__all__ = [
|
|
'exception',
|
|
# 错误类定义
|
|
'screen',
|
|
# screen api
|
|
'types',
|
|
# 类型定义
|
|
'mod',
|
|
# mod api
|
|
]
|