diff options
| author | Gustavoeklund01 <eklundgu@gmail.com> | 2025-11-04 18:52:57 -0300 |
|---|---|---|
| committer | Gustavoeklund01 <eklundgu@gmail.com> | 2025-11-04 18:52:57 -0300 |
| commit | e3b41c5c24488a48b552fb7aeffe250574b9c8a8 (patch) | |
| tree | a9529250bba5965e8b9f5981295ad75b25247771 /api/routes/locations.py | |
| parent | 6e845c8fc10905e51f3c0bb081bc4a09e7062883 (diff) | |
| parent | cc1b5e2f48ef62670be05ccfc6346b16b61844c8 (diff) | |
Merge branch 'master' of https://github.com/Simplesmente-O-Grupo/iot-monitoring
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() |
