1
0
mirror of https://github.com/containous/traefik.git synced 2024-10-27 01:55:17 +03:00
traefik/provider.go

6 lines
92 B
Go
Raw Normal View History

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