From 1b5f96ee8d3cae24128848324c7a8a11926a56ba Mon Sep 17 00:00:00 2001 From: Dean Dimitrovski <37645906+g-vvv@users.noreply.github.com> Date: Sat, 4 May 2024 16:08:05 +0300 Subject: [PATCH] Fixing typo in README.md Changing location of User intefrace from webauthn/user.go to webauthn/types.go --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9565223e..45e805e1 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ While we strive to avoid such changes and strive to notify users they may be una `go get github.com/go-webauthn/webauthn` and initialize it in your application with basic configuration values. -Make sure your `user` model is able to handle the interface functions laid out in `webauthn/user.go`. This means also +Make sure your `user` model is able to handle the interface functions laid out in `webauthn/types.go`. This means also supporting the storage and retrieval of the credential and authenticator structs in `webauthn/credential.go` and `webauthn/authenticator.go`, respectively.