2023-09-12 01:22:48 +02:00
|
|
|
package biometrics
|
|
|
|
|
2023-09-12 01:33:11 +02:00
|
|
|
import (
|
2024-05-04 01:06:24 +02:00
|
|
|
"github.com/quexten/goldwarden/cli/logging"
|
2023-09-12 01:33:11 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
var log = logging.GetLogger("Goldwarden", "Biometrics")
|
2023-09-12 01:22:48 +02:00
|
|
|
|
|
|
|
type Approval string
|
|
|
|
|
|
|
|
const (
|
2023-09-19 21:49:56 +02:00
|
|
|
AccessVault Approval = "com.quexten.goldwarden.accessvault"
|
2023-09-12 01:22:48 +02:00
|
|
|
SSHKey Approval = "com.quexten.goldwarden.usesshkey"
|
|
|
|
BrowserBiometrics Approval = "com.quexten.goldwarden.browserbiometrics"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (a Approval) String() string {
|
|
|
|
return string(a)
|
|
|
|
}
|