mirror of
https://github.com/redis/go-redis.git
synced 2025-04-19 07:22:17 +03:00
12 lines
141 B
Go
12 lines
141 B
Go
// +build appengine
|
|
|
|
package internal
|
|
|
|
func String(b []byte) string {
|
|
return string(b)
|
|
}
|
|
|
|
func Bytes(s string) []byte {
|
|
return []byte(s)
|
|
}
|