Difficult-Rocket/Difficult_Rocket/__init__.py

28 lines
467 B
Python
Raw Normal View History

2021-09-08 23:38:34 +08:00
# -------------------------------
# Difficult Rocket
# Copyright © 2021 by shenjackyuanjie
# All rights reserved
# -------------------------------
2021-04-02 23:31:54 +08:00
"""
2021-01-24 18:26:56 +08:00
writen by shenjackyuanjie
2021-09-02 22:47:10 +08:00
mail: 3695888@qq.com
2021-08-13 12:25:29 +08:00
github: @shenjackyuanjie
2021-09-02 22:47:10 +08:00
gitee: @shenjackyuanjie
2021-04-02 23:31:54 +08:00
"""
2021-09-02 22:47:10 +08:00
from .api import *
from .guis import *
2021-01-24 18:26:56 +08:00
2021-08-13 12:25:29 +08:00
__all__ = [
'new_thread',
2021-09-02 22:47:10 +08:00
'Delivery',
'load_file'
2021-08-13 12:25:29 +08:00
]
@new_thread('think')
def think(some_thing_to_think):
gotcha = 'think_result'
return gotcha