Created
June 18, 2019 08:27
-
-
Save bpisano/4ff06609f9776bbbc84a6c30ed958754 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
| struct HourlyWeather: Codable, Identifiable { | |
| var id: Date { | |
| return time | |
| } | |
| var time: Date | |
| var temperature: Double | |
| var icon: Weather.Icon | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment