diff options
author | Kyomotoi <[email protected]> | 2020-08-02 00:29:45 +0800 |
---|---|---|
committer | Kyomotoi <[email protected]> | 2020-08-02 00:29:45 +0800 |
commit | cec3a97227dd3f9a88bbafe7f2bc96bf513f53ae (patch) | |
tree | 66033fde43c45418fcf7716d14180a611be9adc0 /run.py | |
parent | b9c98687b9b25c86146b849dd40b248e13d2d136 (diff) | |
download | ATRI-cec3a97227dd3f9a88bbafe7f2bc96bf513f53ae.tar.gz ATRI-cec3a97227dd3f9a88bbafe7f2bc96bf513f53ae.tar.bz2 ATRI-cec3a97227dd3f9a88bbafe7f2bc96bf513f53ae.zip |
[Update] Refactor this project
Diffstat (limited to 'run.py')
-rw-r--r-- | run.py | 27 |
1 files changed, 12 insertions, 15 deletions
@@ -1,24 +1,21 @@ # -*- coding:utf-8 -*- import time COPYRIGHT = ( - r"""ATRI | アトリ -Copyright © 2018-2020 Kyomotoi,All Rights Reserved -Project: https://github.com/Kyomotoi/Aya -Blog: lolihub.icu -===================================================""" + r"""====================ATRI | アトリ==================== +* CoolQ + NoneBot + Python +* Copyright © 2018-2020 Kyomotoi,All Rights Reserved +* Project: https://github.com/Kyomotoi/ATRI +* Blog: lolihub.icu +=====================================================""" ) print(COPYRIGHT) -time.sleep(0) +time.sleep(2) +import config # type: ignore +time.sleep(2) +print("ATRI正在苏醒...") -from ATRIbot import config -time.sleep(0) -print("开始执行主程序...RCnb!") - - -time.sleep(0) from os import path -from ATRIbot.plugins import module if __name__ == '__main__': @@ -26,6 +23,6 @@ if __name__ == '__main__': nonebot.init(config) nonebot.load_builtin_plugins() nonebot.load_plugins( - path.join(path.dirname(__file__), 'ATRIbot', 'plugins'), - 'ATRIbot.plugins') + path.join(path.dirname(__file__), 'ATRI', 'plugins'), + 'ATRI.plugins') nonebot.run()
\ No newline at end of file |