mirror of
https://github.com/VaalaCat/frp-panel.git
synced 2025-09-27 03:36:10 +08:00
11 lines
170 B
Go
11 lines
170 B
Go
package utils
|
|
|
|
import (
|
|
"encoding/base64"
|
|
)
|
|
|
|
func EncodeBase64(data string) string {
|
|
encodedStr := base64.StdEncoding.EncodeToString([]byte(data))
|
|
return encodedStr
|
|
}
|