mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 09:05:04 +08:00
14 lines
317 B
Python
14 lines
317 B
Python
from os import path
|
|
|
|
import none
|
|
from demo import config
|
|
|
|
none.init(config)
|
|
app = none.get_bot().asgi
|
|
|
|
if __name__ == '__main__':
|
|
none.load_builtin_plugins()
|
|
none.load_plugins(path.join(path.dirname(__file__), 'plugins'),
|
|
'demo.plugins')
|
|
none.run(host=config.HOST, port=config.PORT)
|