Difficult-Rocket/Difficult_Rocket/__init__.py

26 lines
480 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
2021-11-04 22:35:09 +08:00
version = '0.6.1'
__version__ = version
2021-01-24 18:26:56 +08:00
2021-10-31 23:26:32 +08:00
playing = False
2021-08-13 12:25:29 +08:00
2021-10-31 23:26:32 +08:00
if playing:
from .api import new_thread
2021-08-13 12:25:29 +08:00
2021-10-31 23:26:32 +08:00
@new_thread('think')
def think(some_thing_to_think):
gotcha = 'think_result'
return gotcha