3
0
mirror of https://github.com/42wim/matterbridge.git synced 2025-02-10 11:34:14 +01:00
matterbridge/vendor/github.com/valyala/fasttemplate/unsafe_gae.go

12 lines
170 B
Go
Raw Normal View History

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