feat: Add 4 endpoints via editor
This commit is contained in:
parent
f39db59c52
commit
8f35110519
13
endpoints/deliveries.delete.py
Normal file
13
endpoints/deliveries.delete.py
Normal file
@ -0,0 +1,13 @@
|
||||
# Simplified DELETE template
|
||||
from fastapi import APIRouter, Depends, HTTPException, status
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
@router.delete("/deliveries", status_code=status.HTTP_204_NO_CONTENT) # Operates on the base path
|
||||
async def delete_deliveries( # Function name reflects resource (plural)
|
||||
# db: Session = Depends(get_db) # Example dependency
|
||||
):
|
||||
"""Endpoints for deliveries: Delete resource(s)"""
|
||||
# TODO: Implement logic to delete deliveries (e.g., clear collection or delete specific item based on criteria?)
|
||||
print(f"Deleting deliveries")
|
||||
return None # Return No Content on success
|
14
endpoints/deliveries.get.py
Normal file
14
endpoints/deliveries.get.py
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
from fastapi import APIRouter, Depends
|
||||
# TODO: Import db session, schemas, models as needed
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
@router.get("/deliveries") # Operates on the base path
|
||||
async def get_deliveries( # Function name reflects resource (plural)
|
||||
# db: Session = Depends(get_db) # Example dependency
|
||||
):
|
||||
"""Endpoints for deliveries: Get resource(s)"""
|
||||
# TODO: Implement logic to fetch deliveries (e.g., a list or single object)
|
||||
print(f"Fetching deliveries")
|
||||
return [] # Placeholder
|
20
endpoints/deliveries.post.py
Normal file
20
endpoints/deliveries.post.py
Normal file
@ -0,0 +1,20 @@
|
||||
|
||||
from fastapi import APIRouter, Depends, status, HTTPException
|
||||
# TODO: Import db session, schemas, models as needed
|
||||
# from pydantic import BaseModel # Example
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
# TODO: Define request body schema if needed
|
||||
# class deliverie_Create(BaseModel):
|
||||
# name: str # Example field
|
||||
|
||||
@router.post("/deliveries", status_code=status.HTTP_201_CREATED) # Operates on the base path
|
||||
async def create_deliverie(
|
||||
# item: deliverie_Create, # Example request body
|
||||
# db: Session = Depends(get_db) # Example dependency
|
||||
):
|
||||
"""Endpoints for deliveries: Create resource"""
|
||||
# TODO: Implement logic to create a new deliverie
|
||||
print(f"Creating new deliverie") # with data: {item.dict()}")
|
||||
return {"message": "deliverie created successfully"} # Placeholder
|
20
endpoints/deliveries.put.py
Normal file
20
endpoints/deliveries.put.py
Normal file
@ -0,0 +1,20 @@
|
||||
# Simplified PUT template
|
||||
from fastapi import APIRouter, Depends, HTTPException, status
|
||||
# TODO: Import db session, schemas, models as needed
|
||||
# from pydantic import BaseModel # Example
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
# TODO: Define request body schema if needed
|
||||
# class deliveries_Update(BaseModel): # Schema might represent the whole collection or item
|
||||
# data: list # Example field
|
||||
|
||||
@router.put("/deliveries") # Operates on the base path
|
||||
async def update_deliveries( # Function name reflects resource (plural)
|
||||
# item: deliveries_Update, # Example request body
|
||||
# db: Session = Depends(get_db) # Example dependency
|
||||
):
|
||||
"""Endpoints for deliveries: Update resource(s)"""
|
||||
# TODO: Implement logic to update deliveries (e.g., replace collection or update specific item based on body)
|
||||
print(f"Updating deliveries") # with data: {item.dict()}")
|
||||
return {"message": "deliveries updated successfully"} # Placeholder
|
Loading…
x
Reference in New Issue
Block a user