1
0
mirror of https://github.com/containous/traefik.git synced 2025-03-17 10:50:11 +03:00
traefik/provider/provider.go

11 lines
308 B
Go
Raw Permalink Normal View History

package provider
import "github.com/emilevauge/traefik/types"
// Provider defines methods of a provider.
type Provider interface {
// Provide allows the provider to provide configurations to traefik
// using the given configuration channel.
Provide(configurationChan chan<- types.ConfigMessage) error
}