mtg_python_deckbuilder/code/web/validation/__init__.py

14 lines
297 B
Python
Raw Permalink Normal View History

"""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",
]