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