diff options
author | Kyomotoi <[email protected]> | 2020-08-02 23:41:29 +0800 |
---|---|---|
committer | Kyomotoi <[email protected]> | 2020-08-02 23:41:29 +0800 |
commit | a8be7a48c9a672c57b4c7d786a7ad53fd7fbe768 (patch) | |
tree | 0b8e568d796cce348820f61f594664b2493389c7 | |
parent | e2b075be858fe354371c7cd79bb4ff64e2d9a289 (diff) | |
download | ATRI-a8be7a48c9a672c57b4c7d786a7ad53fd7fbe768.tar.gz ATRI-a8be7a48c9a672c57b4c7d786a7ad53fd7fbe768.tar.bz2 ATRI-a8be7a48c9a672c57b4c7d786a7ad53fd7fbe768.zip |
[Change] reset name
-rw-r--r-- | BOT.py | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -0,0 +1,28 @@ +# -*- coding:utf-8 -*- +import time +COPYRIGHT = ( + 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(2) + +import config # type: ignore +time.sleep(2) +print("ATRI正在苏醒...") + +from os import path + + +if __name__ == '__main__': + import nonebot + nonebot.init(config) + nonebot.load_builtin_plugins() + nonebot.load_plugins( + path.join(path.dirname(__file__), 'ATRI', 'plugins'), + 'ATRI.plugins') + nonebot.run()
\ No newline at end of file |