redis/internal/safe.go

13 lines
162 B
Go
Raw Normal View History

2021-09-08 16:00:52 +03:00
//go:build appengine
2020-06-09 16:29:53 +03:00
// +build appengine
package internal
func String(b []byte) string {
return string(b)
}
func Bytes(s string) []byte {
return []byte(s)
}