Files
lti-api/vendor/github.com/redis/go-redis/v9/internal/util/safe.go
T
GitLab Deploy Bot ad815b3412 .
2025-10-23 11:40:58 +07:00

12 lines
153 B
Go

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