mirror of
https://github.com/uptrace/go-clickhouse.git
synced 2025-06-10 23:27:25 +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)
|
||
|
}
|