Difficult-Rocket/bin/__init__.py

24 lines
297 B
Python
Raw Normal View History

2021-04-02 23:31:54 +08:00
"""
2021-01-24 18:26:56 +08:00
writen by shenjackyuanjie
mail: 3695888@qq.com
2021-08-13 12:25:29 +08:00
github: @shenjackyuanjie
2021-04-02 23:31:54 +08:00
"""
2021-08-13 12:25:29 +08:00
from .new_thread import new_thread
from .tools import config
2021-01-24 18:26:56 +08:00
2021-08-13 12:25:29 +08:00
__all__ = [
'new_thread',
'config'
]
@new_thread('think')
def think(some_thing_to_think):
gotcha = 'think_result'
return gotcha