mirror of
https://github.com/astaxie/beego.git
synced 2024-11-06 01:40:55 +00:00
8 lines
93 B
Go
8 lines
93 B
Go
// +build appengine
|
|
|
|
package util
|
|
|
|
func BytesToString(b []byte) string {
|
|
return string(b)
|
|
}
|