Spaces:
Sleeping
Sleeping
Create db/base.py
Browse files- app/db/base.py +5 -0
app/db/base.py
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from app.models.dictionary_entry import DictionaryEntry
|
| 2 |
+
from app.models.suggestion import Suggestion
|
| 3 |
+
|
| 4 |
+
# Imported so SQLAlchemy knows about models when creating tables
|
| 5 |
+
__all__ = ["DictionaryEntry", "Suggestion"]
|