16 lines
334 B
Python
16 lines
334 B
Python
"""
|
|
The Client table
|
|
"""
|
|
from fastapi import APIRouter, HTTPException
|
|
from sqlmodel import func, select
|
|
from app.models import Client, Supplier, Product, Payment, Credit
|
|
from typing import Any
|
|
|
|
router = APIRouter(prefix="/client", tags=["items"])
|
|
|
|
|
|
@router.get("/", response_model=Client)
|
|
def read_clients(
|
|
session: SessionDep,
|
|
)
|