mtg_python_deckbuilder/code/web/validation/__init__.py

13 lines
297 B
Python

"""Validation package for web application.
Provides centralized validation using Pydantic models and custom validators
for all web route inputs and business logic validation.
"""
from __future__ import annotations
__all__ = [
"models",
"validators",
"card_names",
"messages",
]