9 lines
193 B
Python
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
|