Files
akvorado/web/config.go
2022-03-17 22:58:19 +01:00

11 lines
301 B
Go

package web
// Configuration describes the configuration for the web component.
type Configuration struct {
// GrafanaURL is the URL to acess Grafana.
GrafanaURL string
}
// DefaultConfiguration represents the default configuration for the web exporter.
var DefaultConfiguration = Configuration{}