Files
gallery/weather/api.py

9 lines
193 B
Python

import datetime
from .model import WeatherResponse
class WeatherApi:
async def get_day(self, location_id: str, date: datetime.date) -> WeatherResponse:
raise NotImplementedError