
- 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.
24 lines
465 B
Python
24 lines
465 B
Python
from app.schemas.user import ( # noqa
|
|
User,
|
|
UserCreate,
|
|
UserUpdate,
|
|
UserInDB,
|
|
)
|
|
from app.schemas.news import ( # noqa
|
|
NewsSource,
|
|
NewsSourceCreate,
|
|
NewsCategory,
|
|
NewsCategoryCreate,
|
|
NewsArticle,
|
|
NewsArticleCreate,
|
|
NewsArticleUpdate,
|
|
UserPreference,
|
|
UserPreferenceCreate,
|
|
UserPreferenceUpdate,
|
|
SavedArticle,
|
|
SavedArticleCreate,
|
|
)
|
|
from app.schemas.token import ( # noqa
|
|
Token,
|
|
TokenPayload,
|
|
) |