mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 09:05:04 +08:00
15 lines
365 B
Python
15 lines
365 B
Python
from pathlib import Path
|
|
|
|
from nonebot.drivers.fastapi import Driver
|
|
from fastapi.staticfiles import StaticFiles
|
|
|
|
|
|
def register_route(driver: Driver):
|
|
app = driver.server_app
|
|
|
|
static_path = str((Path(__file__).parent / ".." / "dist").resolve())
|
|
|
|
app.mount("/docs",
|
|
StaticFiles(directory=static_path, html=True),
|
|
name="docs")
|