This commit is contained in:
Bernd Schoolmann 2023-09-12 01:26:16 +02:00
parent 5f06f46534
commit 89d6a4b346
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
package biometrics
func CheckBiometrics(approvalType Approval) bool {
ok, err := touchid.Authenticate(approvalType.String()
ok, err := touchid.Authenticate(approvalType.String())
if err != nil {
log.Fatal(err)
}