iOS Swift - Networking
What is the issue with this Swift async GET request code?
func fetchData() async {
let url = URL(string: "https://example.com")!
let (data, response) = URLSession.shared.data(from: url)
print(data)
}