added the SendUpsellSMS to DevAccountService and MockApi

This commit is contained in:
2025-04-11 11:02:23 +03:00
parent 441e289854
commit 6597d6b6a2
2 changed files with 11 additions and 0 deletions

View File

@@ -61,3 +61,7 @@ func (m MockApi) RequestAlias(ctx context.Context, publicKey string, hint string
func (m MockApi) TokenTransfer(ctx context.Context, amount, from, to, tokenAddress string) (*models.TokenTransferResponse, error) {
return nil, nil
}
func (m MockApi) SendUpsellSMS(ctx context.Context, inviterPhone, inviteePhone string) (*models.SendSMSResponse, error) {
return nil, nil
}