with garth

This commit is contained in:
2025-08-28 09:58:24 -07:00
parent dc5bfcb281
commit 73258c0b41
31 changed files with 983 additions and 738 deletions

View File

@@ -0,0 +1,15 @@
package garth
import (
"context"
)
// MockMFAPrompter is a mock implementation of MFAPrompter for testing
type MockMFAPrompter struct {
Code string
Err error
}
func (m *MockMFAPrompter) GetMFACode(ctx context.Context) (string, error) {
return m.Code, m.Err
}