gotosocial/vendor/github.com/uptrace/bun/extra/bunotel/safe.go

12 lines
156 B
Go
Raw Normal View History

2023-05-09 17:19:48 +00:00
// +build appengine
package internal
func bytesToString(b []byte) string {
return string(b)
}
func stringToBytes(s string) []byte {
return []byte(s)
}