redis/extra/rediscmd/safe.go

12 lines
141 B
Go
Raw Normal View History

2020-10-21 15:19:27 +03:00
// +build appengine
package rediscmd
func String(b []byte) string {
return string(b)
}
func Bytes(s string) []byte {
return []byte(s)
}