summaryrefslogtreecommitdiff
path: root/service/config.go
blob: d53813766f845ad93ff1bcda4606f39e4563cc87 (plain)
1
2
3
4
5
6
package service

type Config interface {
	Get(key string) Config
	Unmarshal(out interface{}) error
}