3
0
mirror of https://github.com/42wim/matterbridge.git synced 2025-02-12 11:31:32 +01:00

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)
}