mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2025-03-15 04:54:45 +00:00
15 lines
231 B
Go
15 lines
231 B
Go
// +build appengine
|
|
|
|
package msgp
|
|
|
|
// let's just assume appengine
|
|
// uses 64-bit hardware...
|
|
const smallint = false
|
|
|
|
func UnsafeString(b []byte) string {
|
|
return string(b)
|
|
}
|
|
|
|
func UnsafeBytes(s string) []byte {
|
|
return []byte(s)
|
|
}
|