mirror of
https://github.com/uptrace/go-clickhouse.git
synced 2025-06-08 23:26:11 +02:00
12 lines
142 B
Go
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)
|
|
}
|