18 lines
429 B
Go
18 lines
429 B
Go
|
|
package config
|
||
|
|
|
||
|
|
type Discovery struct {
|
||
|
|
ExploreDestinations []ExploreDestination `mapstructure:"explore_destinations"`
|
||
|
|
ExploreRegions []ExploreRegion `mapstructure:"explore_regions"`
|
||
|
|
}
|
||
|
|
|
||
|
|
type ExploreDestinations []ExploreDestination
|
||
|
|
|
||
|
|
type ExploreDestination struct {
|
||
|
|
Name string `mapstructure:"name"`
|
||
|
|
ImageURL string `mapstructure:"image_url"`
|
||
|
|
}
|
||
|
|
|
||
|
|
type ExploreRegion struct {
|
||
|
|
Name string `mapstructure:"name"`
|
||
|
|
}
|