add required sms methods

This commit is contained in:
Carlosokumu 2025-04-17 23:14:42 +03:00
parent 5ff139b649
commit 5c0ed48e67
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953

View File

@ -62,3 +62,11 @@ func (m *MockAccountService) SendUpsellSMS(ctx context.Context, inviterPhone, in
args := m.Called(inviterPhone, inviteePhone)
return args.Get(0).(*models.SendSMSResponse), args.Error(1)
}
func (m *MockAccountService) SendPINResetSMS(ctx context.Context, admin, phone string) error {
return nil
}
func (m *MockAccountService) SendAddressSMS(ctx context.Context, publicKey, originPhone string) error {
return nil
}