mirror of
https://github.com/wowlikon/LibraryAPI.git
synced 2025-12-11 21:30:46 +00:00
fixing bugs, changing the handling of dto and db models, preparing to add new functionality
7 lines
90 B
Python
7 lines
90 B
Python
from fastapi import APIRouter
|
|
import asyncpg
|
|
|
|
router = APIRouter(
|
|
prefix='/devices'
|
|
)
|