1
0
mirror of https://github.com/uptrace/go-clickhouse.git synced 2025-06-16 23:47:39 +02:00
Files
go-clickhouse/ch/internal/safe.go
Vladimir Mihailenco 092a2dbf28 feat: initial commit
2022-03-21 08:58:25 +02:00

12 lines
142 B
Go

//go:build appengine
package internal
func String(b []byte) string {
return string(b)
}
func Bytes(s string) []byte {
return []byte(s)
}