1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-22 10:01:50 +03:00
Files
go-redis/internal/util/safe.go
Vladimir Mihailenco 9b6ee9c3cc chore: gofmt all code
2021-09-08 16:52:29 +03:00

13 lines
173 B
Go

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