1
0
mirror of https://github.com/containous/traefik.git synced 2025-03-15 02:50:12 +03:00
traefik/provider.go

6 lines
97 B
Go
Raw Permalink Normal View History

2015-09-07 10:38:58 +02:00
package main
type Provider interface {
Provide(configurationChan chan<- configMessage) error
2015-09-07 10:38:58 +02:00
}