diff options
| author | Luiz Gustavo Monteiro <luizgu_mreis@hotmail.com> | 2025-11-03 23:39:34 -0300 |
|---|---|---|
| committer | Luiz Gustavo Monteiro <luizgu_mreis@hotmail.com> | 2025-11-03 23:39:34 -0300 |
| commit | f392c3edaf52ccfa496d2e85f96e18ec81d11a65 (patch) | |
| tree | 17f15971a209936a774c9a313938452d986a89b5 /api/routes/locations.py | |
| parent | e987f732a7ad2d85a5760061a20873b841c10fac (diff) | |
refactor Post methods in schema files
Diffstat (limited to 'api/routes/locations.py')
| -rw-r--r-- | api/routes/locations.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/api/routes/locations.py b/api/routes/locations.py index 744fa7f..43578df 100644 --- a/api/routes/locations.py +++ b/api/routes/locations.py @@ -2,6 +2,7 @@ from fastapi import APIRouter from sqlalchemy import select from ..database import SessionLocal from ..models import Location +from ..schemas.location import PostLocation from pydantic import BaseModel @@ -28,12 +29,6 @@ async def get_locations(): session.close() return dc - -class PostLocation(BaseModel): - street: str - avenue: str - zip_code:str - @router.post('/') async def create_location(location: PostLocation): session = SessionLocal() |
