nonebot2/none_demo/__init__.py

14 lines
322 B
Python
Raw Normal View History

2018-07-04 08:21:01 +00:00
from os import path
import none
from none_demo import config
bot = none.init(config)
app = bot.asgi
if __name__ == '__main__':
none.load_builtin_plugins()
none.load_plugins(path.join(path.dirname(__file__), 'plugins'),
'none_demo.plugins')
none.run(host=config.HOST, port=config.PORT)