1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-10 16:40:57 +03:00
Files
go-redis/internal/util/safe.go
2018-02-22 14:24:27 +02:00

8 lines
93 B
Go

// +build appengine
package util
func BytesToString(b []byte) string {
return string(b)
}