Skip to content

Instantly share code, notes, and snippets.

View rhys-rant's full-sized avatar

Rhys Morgan rhys-rant

View GitHub Profile
import Combine
import Foundation
struct NamedURL: Codable {
let name: String
let url: URL
}
struct PokeAPIResponse: Codable {
let results: [NamedURL]