update go docs and examples

This commit is contained in:
darrell-thobe-sp
2025-05-13 13:16:33 -04:00
parent d89039d220
commit 9e03821762
255 changed files with 3678 additions and 3678 deletions

View File

@@ -74,7 +74,7 @@ import (
)
func main() {
data := []byte(`{
custompasswordinstruction := []byte(`{
"pageContent" : "Please enter a new password. Your password must be at least 8 characters long and contain at least one number and one letter.",
"pageId" : "change-password:enter-password",
"locale" : "en"
@@ -82,7 +82,7 @@ func main() {
var customPasswordInstruction beta.CustomPasswordInstruction
if err := json.Unmarshal(data, &customPasswordInstruction); err != nil {
if err := json.Unmarshal(custompasswordinstruction, &customPasswordInstruction); err != nil {
fmt.Println("Error:", err)
return
}