mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-09-06 20:16:47 +00:00
add fastapi driver, config
This commit is contained in:
1
tests/.env
Normal file
1
tests/.env
Normal file
@ -0,0 +1 @@
|
||||
ENVIRONMENT=dev
|
4
tests/.env.dev
Normal file
4
tests/.env.dev
Normal file
@ -0,0 +1,4 @@
|
||||
DRIVER=nonebot.drivers.fastapi
|
||||
HOST=0.0.0.0
|
||||
PORT=2333
|
||||
DEBUG=true
|
15
tests/bot.py
15
tests/bot.py
@ -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")
|
||||
|
Reference in New Issue
Block a user