Coverage for src/app/db/registry.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.14.3, created at 2026-06-24 08:34 +0000

1""" 

2Explicit SQLAlchemy model registry. 

3 

4Alembic and engine initialization MUST import this module. 

5""" 

6 

7from app.modules.cards.model import Card 

8from app.modules.decks.model import Deck 

9from app.modules.reviews.model import Review 

10 

11__all__ = [ 

12 "Card", 

13 "Deck", 

14 "Review", 

15]