Difficult-Rocket/Difficult_Rocket/api/__init__.py

20 lines
436 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-05-01 21:24:16 +08:00
from typing import TYPE_CHECKING
2023-05-01 21:24:16 +08:00
if TYPE_CHECKING:
2023-05-01 21:54:47 +08:00
from Difficult_Rocket.api import screen, mod, exception
__all__ = ['screen', 'mod', 'exception']