traefik/provider/boltdb.go

21 lines
546 B
Go
Raw Normal View History

package provider
import (
"github.com/containous/traefik/types"
"github.com/docker/libkv/store"
"github.com/docker/libkv/store/boltdb"
)
// BoltDb holds configurations of the BoltDb provider.
type BoltDb struct {
2016-01-13 21:46:44 +00:00
Kv `mapstructure:",squash"`
}
// Provide allows the provider to provide configurations to traefik
// using the given configuration channel.
func (provider *BoltDb) Provide(configurationChan chan<- types.ConfigMessage) error {
2016-01-13 21:46:44 +00:00
provider.storeType = store.BOLTDB
boltdb.Register()
return provider.provide(configurationChan)
}