Clean up for only MCP Server

This commit is contained in:
2025-02-24 16:50:08 +00:00
parent 5d199ba154
commit 16cd3f48fe
52 changed files with 66 additions and 1317 deletions

View File

@@ -0,0 +1,12 @@
"""Test models for Airflow tool tests."""
from pydantic import BaseModel
class TestRequestModel(BaseModel):
"""Test request model."""
path_id: int
query_filter: str | None = None
body_name: str
body_value: int