1
0
mirror of https://github.com/uptrace/go-clickhouse.git synced 2025-06-10 23:27:25 +02:00

12 lines
142 B
Go
Raw Normal View History

2022-01-23 09:36:24 +02:00
//go:build appengine
package internal
func String(b []byte) string {
return string(b)
}
func Bytes(s string) []byte {
return []byte(s)
}