EdgexAgent/device-ble-go/vendor/github.com/valyala/fasttemplate/unsafe_gae.go
2025-07-10 20:40:32 +08:00

12 lines
170 B
Go

// +build appengine
package fasttemplate
func unsafeBytes2String(b []byte) string {
return string(b)
}
func unsafeString2Bytes(s string) []byte {
return []byte(s)
}