10 lines
243 B
Go
10 lines
243 B
Go
package types
|
|
|
|
// The Moon data type, representing the moon phase,
|
|
// the moon phase icon and the moon progress(%).
|
|
type Moon struct {
|
|
Icon string `json:"icon"`
|
|
Phase string `json:"phase"`
|
|
Percentage string `json:"percentage"`
|
|
}
|