5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 13:42:30 +00:00
matterbridge/vendor/github.com/valyala/fasttemplate/unsafe_gae.go

12 lines
170 B
Go
Raw Normal View History

2017-06-05 22:01:05 +00:00
// +build appengine
package fasttemplate
func unsafeBytes2String(b []byte) string {
return string(b)
}
func unsafeString2Bytes(s string) []byte {
return []byte(s)
}