Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
okthenok/monicax
hugric
/
monica
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
monica
/
internal
/
utils
/
base64.go
coo7
Create utils/base64.go
6d0493f
verified
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
196 Bytes
package
utils
import
(
"encoding/base64"
)
// Base64Decode 解码base64字符串为字节数组
func
Base64Decode
(data
string
)
([]
byte
,
error
) {
return
base64.StdEncoding.DecodeString(data)
}