nonebot2/run.py

11 lines
169 B
Python
Raw Normal View History

2018-06-14 22:58:24 +00:00
import config
import none
bot = none.create_bot(config)
none.load_plugins()
app = bot.asgi
if __name__ == '__main__':
bot.run(host=config.HOST, port=config.PORT)