Skip to content

Commit

Permalink
fix: Validate has not public variable struct
Browse files Browse the repository at this point in the history
  • Loading branch information
mrwan2546 committed May 5, 2024
1 parent 522ad00 commit aa38099
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions validate.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package promptparsego

type SlipVerifyStruct struct {
sendingBank string
transRef string
SendingBank string
TransRef string
}

func SlipVerify(payload string) *SlipVerifyStruct {
Expand All @@ -17,7 +17,7 @@ func SlipVerify(payload string) *SlipVerifyStruct {
}

return &SlipVerifyStruct{
sendingBank: sendingBank,
transRef: transRef,
SendingBank: sendingBank,
TransRef: transRef,
}
}

0 comments on commit aa38099

Please sign in to comment.