fix: correct sendSms response

This commit is contained in:
Carlosokumu 2025-04-01 14:53:30 +03:00
parent 2eed990921
commit 417e7f0179
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953

View File

@ -17,5 +17,5 @@ type AccountService interface {
TokenTransfer(ctx context.Context, amount, from, to, tokenAddress string) (*models.TokenTransferResponse, error)
CheckAliasAddress(ctx context.Context, alias string) (*models.AliasAddress, error)
RequestAlias(ctx context.Context, hint string, publicKey string) (*models.RequestAliasResult, error)
SendSMS(ctx context.Context, inviterPhone, inviteePhone string) (*models.TokenTransferResponse, error)
SendSMS(ctx context.Context, inviterPhone, inviteePhone string) (*models.SendSMSResponse, error)
}