mirror of https://github.com/zhongshmx/JX3BOT.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
355 B
23 lines
355 B
# -*- coding: utf-8 -*
|
|
|
|
"""
|
|
@Software : PyCharm
|
|
@File : bot.py
|
|
@Author : 梦影
|
|
@Time : 2021/04/25 19:28:39
|
|
"""
|
|
|
|
from os import path
|
|
import nonebot
|
|
import config
|
|
|
|
nonebot.init(config)
|
|
nonebot.load_plugins(
|
|
path.join(path.dirname(__file__), 'plugin'),
|
|
'plugin'
|
|
)
|
|
bot = nonebot.get_bot()
|
|
app = bot.asgi
|
|
|
|
if __name__ == '__main__':
|
|
nonebot.run()
|
|
|