1
0
mirror of https://github.com/redis/go-redis.git synced 2025-06-14 01:21:30 +03:00
Files
go-redis/extra/rediscmd/safe.go
Vladimir Mihailenco 7b1a844a5b Add extra modules
2020-10-21 15:19:27 +03:00

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)
}