8 lines
94 B
Go
8 lines
94 B
Go
// +build appengine
|
|
|
|
package redis
|
|
|
|
func bytesToString(b []byte) string {
|
|
return string(b)
|
|
}
|