Finn Christiansen
d8607212da
Some checks failed
Python formatting PEP8 / Python-PEP8 (push) Failing after 18s
6 lines
159 B
Python
6 lines
159 B
Python
from fastapi import APIRouter
|
|
|
|
from .endpoints import items
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(items.router, prefix="/items", tags=["items"])
|