Difficult-Rocket/SRtool/__init__.py

26 lines
478 B
Python
Raw Normal View History

# -------------------------------
# Difficult Rocket
# Copyright © 2021 by shenjackyuanjie
# All rights reserved
# -------------------------------
"""
writen by shenjackyuanjie
mail: 3695888@qq.com
github: @shenjackyuanjie
gitee: @shenjackyuanjie
"""
version = '1.1'
__version__ = version
playing = False
if playing:
from .api import new_thread
@new_thread('think')
def think(some_thing_to_think):
gotcha = 'think_result'
return gotcha