Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
zhepama
/
monica-proxy
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c5eab62
monica-proxy
/
internal
/
utils
/
base64.go
github-actions[bot]
Update from GitHub Actions
c5eab62
about 1 month ago
raw
Copy download link
history
blame
Safe
196 Bytes
package
utils
import
(
"encoding/base64"
)
// Base64Decode 解码base64字符串为字节数组
func
Base64Decode
(data
string
)
([]
byte
,
error
) {
return
base64.StdEncoding.DecodeString(data)
}