add fastapi driver, config

This commit is contained in:
yanyongyu
2020-07-04 22:51:10 +08:00
parent 1e632d5f10
commit 4d242875d2
16 changed files with 644 additions and 45 deletions

View File

@ -4,14 +4,17 @@
import os
import sys
sys.path.insert(0, os.path.abspath(os.path.dirname(os.path.dirname(__file__))))
sys.path.insert(0, os.path.abspath(".."))
import nonebot
from nonebot.matcher import matchers
nonebot.init()
app = nonebot.get_asgi()
nonebot.load_plugins("test_plugins")
print(nonebot.get_loaded_plugins())
print(matchers)
if __name__ == "__main__":
nonebot.load_plugins(os.path.join(os.path.dirname(__file__),
"test_plugins"))
print(nonebot.get_loaded_plugins())
print(matchers)
print(matchers[1][0].handlers)
nonebot.run(app="bot:app")