nonebot2/packages/nonebot-plugin-docs/nonebot_plugin_docs/drivers/fastapi.py

27 lines
658 B
Python
Raw Normal View History

2020-11-21 17:20:14 +00:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
@Author : yanyongyu
@Date : 2020-11-22 00:56:31
@LastEditors : yanyongyu
@LastEditTime : 2020-11-22 01:03:05
@Description : None
@GitHub : https://github.com/yanyongyu
"""
__author__ = "yanyongyu"
from pathlib import Path
from nonebot.drivers.fastapi import Driver
from fastapi.staticfiles import StaticFiles
def register_route(driver: Driver, socketio):
app = driver.server_app
static_path = str((Path(__file__).parent / ".." / "dist").resolve())
app.mount("/docs",
StaticFiles(directory=static_path, html=True),
name="docs")