1
0
mirror of https://github.com/containous/traefik.git synced 2025-03-14 00:58:23 +03:00
traefik/provider.go

6 lines
92 B
Go
Raw Permalink Normal View History

2015-09-07 10:38:58 +02:00
package main
type Provider interface {
2015-09-08 13:33:10 +02:00
Provide(configurationChan chan<- *Configuration)
2015-09-07 10:38:58 +02:00
}