go-passbolt/api/mfa.go
2023-04-19 21:24:12 +02:00

13 lines
236 B
Go

package api
type MFAChallenge struct {
Provider MFAProviders `json:"providers,omitempty"`
}
type MFAProviders struct {
TOTP string `json:"totp,omitempty"`
}
type MFAChallengeResponse struct {
TOTP string `json:"totp,omitempty"`
}