j🇺
Size: a a a
j🇺
A
j🇺
j🇺
A
j🇺
A
M
A
A
A

A
import Foundation
import Alamofire
class WeatherService {
static let instance = WeatherService()
func downloadWeatherDetail() {
let url = URL(string: API_URL_CURRENT_WEATHER)
Alamofire.request(url!).responseJSON { (response) in
print(response.result.value ?? "")
}
}
}
A
AI
A