
- Fix code linting issues - Update README with detailed documentation - Configure database paths for the current environment - Create necessary directory structure The News Aggregation Service is now ready to use with FastAPI and SQLite.
9 lines
242 B
Python
9 lines
242 B
Python
from app.models.base import Base, TimestampMixin, TableNameMixin # noqa
|
|
from app.models.user import User # noqa
|
|
from app.models.news import ( # noqa
|
|
NewsSource,
|
|
NewsCategory,
|
|
NewsArticle,
|
|
SavedArticle,
|
|
UserPreference,
|
|
) |