MAESTRO: add tests endpoint schema

This commit is contained in:
Mariusz Banach
2026-02-18 01:01:09 +01:00
parent 77c1881534
commit 158074ef32
6 changed files with 28 additions and 1 deletions

View File

@@ -0,0 +1 @@
"""API response schemas."""

View File

@@ -0,0 +1,7 @@
from __future__ import annotations
from app.engine.models import Test
class TestResponse(Test):
pass