goldwarden/agent/systemauth/biometrics/windows.go

9 lines
163 B
Go
Raw Normal View History

2023-09-12 03:54:46 +03:00
//go:build windows
package biometrics
func CheckBiometrics(approvalType Approval) bool {
log.Info("Biometrics undefined on windows... skipping")
return true
}