
- Implemented FastAPI application structure - Added OpenWeatherMap API integration - Created SQLite database with SQLAlchemy - Setup Alembic for database migrations - Added health check endpoint - Created comprehensive README generated with BackendIM... (backend.im)
7 lines
177 B
Python
7 lines
177 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import weather
|
|
|
|
api_router = APIRouter()
|
|
|
|
api_router.include_router(weather.router, prefix="/weather", tags=["weather"]) |