zd / app /db /base.py
Juna190825's picture
Update app/db/base.py
3d1e733 verified
raw
history blame contribute delete
236 Bytes
from app.db import Base
from app.models.dictionary_entry import DictionaryEntry
from app.models.suggestion import Suggestion
# Imported so SQLAlchemy knows about models when creating tables
__all__ = ["DictionaryEntry", "Suggestion"]