7 lines
150 B
Python
7 lines
150 B
Python
from fastapi import FastAPI
|
|
from .log import router as log_router
|
|
|
|
|
|
def register_routers(app: FastAPI):
|
|
app.include_router(log_router, prefix="")
|