redis/extra/rediscmd/safe.go

13 lines
162 B
Go
Raw Normal View History

2024-06-20 02:30:37 +03:00
//go:build appengine
// +build appengine
package rediscmd
func String(b []byte) string {
return string(b)
}
func Bytes(s string) []byte {
return []byte(s)
}