nonebot2/docs/guide/code/awesome-bot-7/bot.py

14 lines
245 B
Python
Raw Normal View History

2019-01-21 07:25:45 +00:00
from os import path
import nonebot
import config
if __name__ == '__main__':
nonebot.init(config)
2019-01-26 14:21:51 +00:00
nonebot.load_plugins(
path.join(path.dirname(__file__), 'awesome', 'plugins'),
'awesome.plugins'
)
2019-01-21 07:25:45 +00:00
nonebot.run()