
- 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.
7 lines
234 B
Python
7 lines
234 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1 import news, users
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(news.router, prefix="/news", tags=["news"])
|
|
api_router.include_router(users.router, prefix="/users", tags=["users"]) |