5 lines
92 B
Go
5 lines
92 B
Go
package main
|
|
|
|
type Provider interface {
|
|
Provide(configurationChan chan<- *Configuration)
|
|
}
|