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.
JX3BOT/bot.py

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()