Created
June 18, 2019 08:24
-
-
Save bpisano/f79dbdd2156b8c6ddee61e54ae4aec66 to your computer and use it in GitHub Desktop.
Embedded code in my Weather article on Medium
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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