mirror of
https://github.com/containous/traefik.git
synced 2025-03-16 06:50:13 +03:00
11 lines
308 B
Go
11 lines
308 B
Go
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
|
|
}
|