redis/extra/rediscmd/safe.go

12 lines
141 B
Go

// +build appengine
package rediscmd
func String(b []byte) string {
return string(b)
}
func Bytes(s string) []byte {
return []byte(s)
}