package
Version:
v0.0.0-...-3938c81
Opens a new window with list of versions in this module.
Published: Nov 24, 2016
License: Apache-2.0
Opens a new window with license information.
Imports: 14
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
¶
Step 5: final version of the application
Congratulations, your application is now complete!!!! 🎉
You might continue improving it; one idea is to perform all
the calls to weather
concurrently. How would you do that?
Documentation
¶
type Event struct {
Title string `json:"title"`
Description string `json:"description"`
Date time.Time `json:"date"`
Location string `json:"location"`
Weather *Weather `json:"weather" datastore:"-"`
}
Event contains the information related to an event.
type Weather struct {
Description string `json:"description"`
Icon string `json:"icon"`
}
Weather contains the description and icon for a weather condition.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.