Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save bpisano/4ff06609f9776bbbc84a6c30ed958754 to your computer and use it in GitHub Desktop.
Embedded code in my Weather article on Medium
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