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

package util

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

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