1
0
mirror of https://github.com/redis/go-redis.git synced 2025-04-19 07:22:17 +03:00
go-redis/unsafe.go
Vladimir Mihailenco 03faf5daed Disable unsafe.
2015-08-26 09:38:44 +03:00

8 lines
95 B
Go

// +build !appengine
package redis
func bytesToString(b []byte) string {
return string(b)
}