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
}
type RealEnvStore struct {}
type RealEnvStore struct{}
func (e *RealEnvStore) Get(key string) string {
return os.Getenv(key)