Files
akvorado/console/config.go
Vincent Bernat bbe6fdb635 console: remove proxy to Grafana
This is not really our job to do that.
2022-04-07 11:07:38 +02:00

11 lines
351 B
Go

package console
// Configuration describes the configuration for the console component.
type Configuration struct {
// 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{}