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