add required AccountService methods

This commit is contained in:
Carlosokumu 2025-04-17 18:58:12 +03:00
parent b85511e436
commit 58366274c3
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953

View File

@ -660,3 +660,11 @@ func (das *DevAccountService) SendUpsellSMS(ctx context.Context, inviterPhone, i
Invitee: inviteePhone, Invitee: inviteePhone,
}, nil }, nil
} }
func (das *DevAccountService) SendPINResetSMS(ctx context.Context, admin, phone string) error {
return fmt.Errorf("unimplemented")
}
func (das *DevAccountService) SendAddressSMS(ctx context.Context, publicKey, originPhone string) error {
return fmt.Errorf("unimplemented")
}