Files
sshecret/packages/sshecret-backend/src/sshecret_backend/router.py
2025-04-16 15:08:51 +02:00

10 lines
127 B
Python

"""API Router."""
from fastapi import FastAPI
from .app import backend_api
app = FastAPI()
app.include_router(backend_api)