5 lines
97 B
Go
5 lines
97 B
Go
package main
|
|
|
|
type Provider interface {
|
|
Provide(configurationChan chan<- configMessage) error
|
|
}
|