8 lines
192 B
Go
8 lines
192 B
Go
|
package config
|
||
|
|
||
|
// MapsSettings represents maps settings (for places).
|
||
|
type MapsSettings struct {
|
||
|
Animate int `json:"animate" yaml:"Animate"`
|
||
|
Style string `json:"style" yaml:"Style"`
|
||
|
}
|