
- 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)
5 lines
164 B
Python
5 lines
164 B
Python
from app.schemas.weather import (
|
|
City, CityCreate, CityBase,
|
|
WeatherData, WeatherDataCreate, WeatherDataBase,
|
|
WeatherResponse, CityWeather, CityQuery
|
|
) |