Providers refactoring

This commit is contained in:
emile 2015-09-07 10:38:58 +02:00
parent 8fcbd73edc
commit bf37869b8f
4 changed files with 169 additions and 67 deletions

5
provider.go Normal file
View file

@ -0,0 +1,5 @@
package main
type Provider interface {
Provide(chan<- Service)
}