override suspend fun loadWeatherForecastFor()

in src/main/kotlin/org/jetbrains/plugins/template/weatherApp/services/WeatherForecastService.kt [36:40]


    override suspend fun loadWeatherForecastFor(location: Location): Result<WeatherForecastData> {
        return withContext(networkCoroutineContext) {
            runCatching { getWeatherData(location) }
        }
    }