1
0
mirror of https://github.com/redis/go-redis.git synced 2025-04-19 07:22:17 +03:00
go-redis/internal/safe.go
Vladimir Mihailenco f29951c899 Speedup ScanSlice
2017-06-02 16:19:43 +03:00

12 lines
156 B
Go

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