Change websocket library

This commit is contained in:
Milan Nikolic
2019-10-06 01:52:13 +02:00
parent 1c8347fee8
commit b4e1af7729
6 changed files with 147 additions and 66 deletions

11
image/base64_amd64.go Normal file
View File

@@ -0,0 +1,11 @@
// +build amd64
package image
import (
"goost.org/encoding/base64"
)
func EncodeToString(src []byte) string {
return base64.StdEncoding.EncodeToString(src)
}