Files
weather-info/app/classes/__init__.py
2025-11-13 18:17:25 +01:00

8 lines
327 B
Python

from .weather import Weather, AirQuality, Condition, CurrentCondition
from .location import Location
from .response_status import ResponseStatus
from .weather_response import WeatherResponse
__all__ = ["Weather",
"AirQuality","Condition","CurrentCondition","Location",
"ResponseStatus","WeatherResponse"]