You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/command/agent/config.go

13 lines
313 B

11 years ago
package agent
// Config is the configuration that can be set for an Agent.
// Some of this is configurable as CLI flags, but most must
// be set using a configuration file.
type Config struct {
}
// DefaultConfig is used to return a sane default configuration
func DefaultConfig() *Config {
return &Config{}
}