1
0
mirror of https://github.com/astaxie/beego.git synced 2025-02-21 17:27:17 +00:00
2018-11-09 12:37:28 +08:00

12 lines
152 B
Go

// +build appengine
package util
func BytesToString(b []byte) string {
return string(b)
}
func StringToBytes(s string) []byte {
return []byte(s)
}