fixed formatting

This commit is contained in:
Roy Razon 2018-01-16 13:19:27 +02:00
parent da4885ce3d
commit e4c9d87b4c

View file

@ -100,7 +100,7 @@ type EnvStore interface {
Get(key string) string Get(key string) string
} }
type RealEnvStore struct {} type RealEnvStore struct{}
func (e *RealEnvStore) Get(key string) string { func (e *RealEnvStore) Get(key string) string {
return os.Getenv(key) return os.Getenv(key)
@ -174,7 +174,7 @@ type Viper struct {
onConfigChange func(fsnotify.Event) onConfigChange func(fsnotify.Event)
envStore EnvStore envStore EnvStore
} }
func baseNew() *Viper { func baseNew() *Viper {