Add test for new records in DB

This commit is contained in:
SimonSanich
2026-03-27 14:47:45 +02:00
parent 65f767d38e
commit 7d75a15de1
3 changed files with 48 additions and 3 deletions

View File

@@ -12,8 +12,8 @@ from sqlalchemy import (
)
from sqlalchemy.sql import select
from database import metadata, SessionLocal
from schemas import ProcessedAgentData, ProcessedAgentDataInDB
from .database import metadata, SessionLocal
from .schemas import ProcessedAgentData, ProcessedAgentDataInDB
# FastAPI app setup
app = FastAPI()