mirror of
https://github.com/traefik/traefik.git
synced 2025-05-18 21:54:39 +00:00
6 lines
97 B
Go
6 lines
97 B
Go
package main
|
|
|
|
type Provider interface {
|
|
Provide(configurationChan chan<- configMessage) error
|
|
}
|