From 7aff7a146a1c57fea2ca9120e82c412946de3606 Mon Sep 17 00:00:00 2001 From: connerdouglass Date: Fri, 11 Aug 2023 10:05:02 -0400 Subject: [PATCH] update readme example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dfff7f9..53cb354 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,6 @@ Make sure to store all the fields provided in the `webauthn.Credential` struct i ```go wa := webauthn.New(webauthn.Options{ RP: webauthn.RelyingParty{ID: "mycompany.com", Name: "My Company"}, - Credentials: &credentials, + Credentials: &myCredentialStore{}, }) ```