From 0d2ef078e420cf94e81272eea3fa2301983c0838 Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Tue, 15 Apr 2025 17:57:50 +0000 Subject: [PATCH] feat: Update endpoint contact --- endpoints/contact.post.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/endpoints/contact.post.py b/endpoints/contact.post.py index b91a65f..5895b8c 100644 --- a/endpoints/contact.post.py +++ b/endpoints/contact.post.py @@ -3,8 +3,6 @@ from sqlalchemy.orm import Session from core.database import get_db from schemas.contact import ContactCreate, ContactSchema from typing import Dict, Any -from utils.contact_utils import sanitize_contact_input, validate_contact_data -from services.contact_service import create_contact, format_contact_response router = APIRouter()