Automated Action fec0fa72e7 Initial project setup with FastAPI, SQLite, and Alembic
- 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
2025-05-27 20:34:02 +00:00

5 lines
190 B
Python

# Re-export services
from app.services.weather_service import WeatherService
from app.services.cache_service import CacheService, cache
__all__ = ["WeatherService", "CacheService", "cache"]