mirror of
https://github.com/containous/traefik.git
synced 2025-03-19 18:50:12 +03:00
8 lines
153 B
Go
8 lines
153 B
Go
|
package provider
|
||
|
|
||
|
import "github.com/emilevauge/traefik/types"
|
||
|
|
||
|
type Provider interface {
|
||
|
Provide(configurationChan chan<- types.ConfigMessage) error
|
||
|
}
|