8 lines
93 B
Go
8 lines
93 B
Go
// +build appengine
|
|
|
|
package util
|
|
|
|
func BytesToString(b []byte) string {
|
|
return string(b)
|
|
}
|