Codebase list golang-github-stvp-tempredis / 7fb7d2b config.go
7fb7d2b

Tree @7fb7d2b (Download .tar.gz)

config.go @7fb7d2braw · history · blame

1
2
3
4
5
6
7
8
package tempredis

// Config is a key-value map of Redis config settings.
type Config map[string]string

func (c Config) Socket() string {
	return c["unixsocket"]
}