mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2026-03-19 11:46:30 +01:00
14 lines
297 B
Python
14 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",
|
||
|
|
]
|