blob: 59b50d30789f226923e3579938cf60dffc24057e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import time
COPYRIGHT = (
r"""====================[ATRI | アトリ]====================
* Mirai + NoneBot2 + Python
* Copyright © 2018-2020 Kyomotoi,All Rights Reserved
* Project: https://github.com/Kyomotoi/ATRI
* Blog: blog.lolihub.icu
=======================================================""")
print(COPYRIGHT)
time.sleep(2)
import nonebot
nonebot.init()
app = nonebot.get_asgi()
nonebot.load_plugins("ATRI/plugins")
if __name__ == "__main__":
nonebot.run(app="bot:app")
|