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