1
0
mirror of https://github.com/TwiN/gatus.git synced 2026-02-05 16:48:49 +00:00
Files
gatus/core/ui/ui.go

14 lines
309 B
Go

package ui
// Config is the UI configuration for services
type Config struct {
HideHostname bool `yaml:"hide-hostname"` // Whether to hide the hostname in the Result
}
// GetDefaultConfig retrieves the default UI configuration
func GetDefaultConfig() *Config {
return &Config{
HideHostname: false,
}
}