Skip to content

Instantly share code, notes, and snippets.

@bpisano
Created June 18, 2019 08:24
Show Gist options
  • Select an option

  • Save bpisano/f79dbdd2156b8c6ddee61e54ae4aec66 to your computer and use it in GitHub Desktop.

Select an option

Save bpisano/f79dbdd2156b8c6ddee61e54ae4aec66 to your computer and use it in GitHub Desktop.
Embedded code in my Weather article on Medium
extension Weather {
struct List<T: Codable & Identifiable>: Codable {
var list: [T]
enum CodingKeys: String, CodingKey {
case list = "data"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment