in app/app.py [0:0]
def delete(cls, event: EventType) -> Tuple[int, Dict[str, str]]:
user_id = event['pathParameters']['user_id']
try:
table.delete_item(Key={'user_id': user_id})
except ClientError:
raise # TODO: Implement appropriate error handling
return 204, {}