mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-06-28 03:19:25 +00:00
Update vendor
This commit is contained in:
2
vendor/github.com/valyala/fasttemplate/unsafe.go
generated
vendored
2
vendor/github.com/valyala/fasttemplate/unsafe.go
generated
vendored
@ -1,3 +1,5 @@
|
||||
// +build !appengine
|
||||
|
||||
package fasttemplate
|
||||
|
||||
import (
|
||||
|
11
vendor/github.com/valyala/fasttemplate/unsafe_gae.go
generated
vendored
Normal file
11
vendor/github.com/valyala/fasttemplate/unsafe_gae.go
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
// +build appengine
|
||||
|
||||
package fasttemplate
|
||||
|
||||
func unsafeBytes2String(b []byte) string {
|
||||
return string(b)
|
||||
}
|
||||
|
||||
func unsafeString2Bytes(s string) []byte {
|
||||
return []byte(s)
|
||||
}
|
Reference in New Issue
Block a user