type Config struct {
Station Station `json:"station_settings"`
Location location `json:"location_settings"`
Explorer explorer `json:"explorer_settings"`
Sensor Sensor `json:"sensor_settings"`
Stream Stream `json:"stream_settings"`
NtpClient ntpclient `json:"ntpclient_settings"`
Database database `json:"database_settings"`
Server server `json:"server_settings"`
Logger logger `json:"logger_settings"`
Services services `json:"services_settings"`
}
type Station struct {
Name string `json:"name"`
Owner string `json:"owner"`
Region string `json:"region"`
Country string `json:"country"`
City string `json:"city"`
}