Files
akvorado/console/config.go
2022-04-01 20:21:53 +02:00

13 lines
414 B
Go

package console
// Configuration describes the configuration for the console component.
type Configuration struct {
// GrafanaURL is the URL to acess Grafana.
GrafanaURL string
// ServeLiveFS serve files from the filesystem instead of the embedded versions.
ServeLiveFS bool
}
// DefaultConfiguration represents the default configuration for the console component.
var DefaultConfiguration = Configuration{}