mirror of
https://github.com/foomo/squadron.git
synced 2025-10-16 12:35:42 +00:00
10 lines
136 B
Go
10 lines
136 B
Go
package template
|
|
|
|
import (
|
|
b64 "encoding/base64"
|
|
)
|
|
|
|
func base64(v string) string {
|
|
return b64.StdEncoding.EncodeToString([]byte(v))
|
|
}
|