mirror of
https://github.com/traefik/traefik.git
synced 2025-08-12 09:37:07 +02:00
6 lines
97 B
Go
6 lines
97 B
Go
package main
|
|
|
|
type Provider interface {
|
|
Provide(configurationChan chan<- configMessage) error
|
|
}
|