mirror of
https://github.com/passbolt/go-passbolt.git
synced 2025-05-09 17:48:20 +00:00
13 lines
236 B
Go
13 lines
236 B
Go
package api
|
|
|
|
type MFAChallange struct {
|
|
Provider MFAProviders `json:"providers,omitempty"`
|
|
}
|
|
|
|
type MFAProviders struct {
|
|
TOTP string `json:"totp,omitempty"`
|
|
}
|
|
|
|
type MFAChallangeResponse struct {
|
|
TOTP string `json:"totp,omitempty"`
|
|
}
|