summaryrefslogtreecommitdiffstats
path: root/dependencies/pkg/mod/github.com/go-redis/redis/v8@v8.11.5/internal/safe.go
blob: fd2f43409472909eb539e73f92b70d74d5b9b2e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//go:build appengine
// +build appengine

package internal

func String(b []byte) string {
	return string(b)
}

func Bytes(s string) []byte {
	return []byte(s)
}