forked from TrueCloudLab/distribution
fcbc25e789
We are replacing the very outdated redigo Go module with the official redis Go module, go-redis. Signed-off-by: Milos Gajdos <milosthegajdos@gmail.com>
12 lines
162 B
Go
12 lines
162 B
Go
//go:build appengine
|
|
// +build appengine
|
|
|
|
package rediscmd
|
|
|
|
func String(b []byte) string {
|
|
return string(b)
|
|
}
|
|
|
|
func Bytes(s string) []byte {
|
|
return []byte(s)
|
|
}
|