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