mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2026-03-18 19:26:31 +01:00
refactor: backend standardization (service layer, validation, route splitting) + image cache and Scryfall API fixes
This commit is contained in:
parent
e81b47bccf
commit
f784741416
35 changed files with 7054 additions and 4344 deletions
13
code/web/validation/__init__.py
Normal file
13
code/web/validation/__init__.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
"""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",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue