mirror of
https://github.com/gen2brain/cam2ip.git
synced 2025-12-16 04:18:39 +00:00
12 lines
163 B
Go
12 lines
163 B
Go
// +build amd64
|
|
|
|
package image
|
|
|
|
import (
|
|
"goost.org/encoding/base64"
|
|
)
|
|
|
|
func EncodeToString(src []byte) string {
|
|
return base64.StdEncoding.EncodeToString(src)
|
|
}
|