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 *
|
2021-10-04 20:41:41 +08:00
|
|
|
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',
|
2021-09-28 22:47:19 +08:00
|
|
|
'load_file'
|
2021-08-13 12:25:29 +08:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
@new_thread('think')
|
|
|
|
def think(some_thing_to_think):
|
|
|
|
gotcha = 'think_result'
|
|
|
|
return gotcha
|