traefik/provider/consul.go

20 lines
537 B
Go
Raw Normal View History

package provider
import "github.com/emilevauge/traefik/types"
2015-09-21 16:05:56 +00:00
// Consul holds configurations of the Consul provider.
type Consul struct {
Watch bool
Endpoint string
Prefix string
Filename string
KvProvider *Kv
2015-09-21 16:05:56 +00:00
}
// Provide allows the provider to provide configurations to traefik
// using the given configuration channel.
func (provider *Consul) Provide(configurationChan chan<- types.ConfigMessage) error {
provider.KvProvider = NewConsulProvider(provider)
return provider.KvProvider.provide(configurationChan)
2015-09-21 16:05:56 +00:00
}