blob: 21307110bd544ee19414db435e47e32748e50e95 [file] [log] [blame]
//go:build appengine
// +build appengine
package util
func BytesToString(b []byte) string {
return string(b)
}
func StringToBytes(s string) []byte {
return []byte(s)
}