
- Set up SQLite database configuration and directory structure - Configure Alembic for proper SQLite migrations - Add initial model schemas and API endpoints - Fix OAuth2 authentication - Implement proper code formatting with Ruff
12 lines
537 B
Python
12 lines
537 B
Python
# Re-export schemas
|
|
from app.schemas.user import User, UserCreate, UserUpdate, UserInDB
|
|
from app.schemas.location import Location, LocationCreate, LocationUpdate
|
|
from app.schemas.weather import WeatherData, ForecastItem, Forecast, CurrentWeather, WeatherQuery
|
|
from app.schemas.token import Token, TokenPayload
|
|
|
|
__all__ = [
|
|
"User", "UserCreate", "UserUpdate", "UserInDB",
|
|
"Location", "LocationCreate", "LocationUpdate",
|
|
"WeatherData", "ForecastItem", "Forecast", "CurrentWeather", "WeatherQuery",
|
|
"Token", "TokenPayload"
|
|
] |