mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
Change AccountDelete signature
This commit is contained in:
parent
f43866fde4
commit
6e50473337
1 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ func New() CoordinatorClient {
|
|||
|
||||
type CoordinatorClient interface {
|
||||
SpaceDelete(ctx context.Context, spaceId string, conf *coordinatorproto.DeletionConfirmPayloadWithSignature) (err error)
|
||||
AccountDelete(ctx context.Context, conf *coordinatorproto.AccountDeletionConfirmPayload) (timestamp int64, err error)
|
||||
AccountDelete(ctx context.Context, conf *coordinatorproto.DeletionConfirmPayloadWithSignature) (timestamp int64, err error)
|
||||
AccountRevertDeletion(ctx context.Context) (err error)
|
||||
StatusCheckMany(ctx context.Context, spaceIds []string) (statuses []*coordinatorproto.SpaceStatusPayload, err error)
|
||||
StatusCheck(ctx context.Context, spaceId string) (status *coordinatorproto.SpaceStatusPayload, err error)
|
||||
|
@ -87,7 +87,7 @@ func (c *coordinatorClient) SpaceDelete(ctx context.Context, spaceId string, con
|
|||
})
|
||||
}
|
||||
|
||||
func (c *coordinatorClient) AccountDelete(ctx context.Context, conf *coordinatorproto.AccountDeletionConfirmPayload) (timestamp int64, err error) {
|
||||
func (c *coordinatorClient) AccountDelete(ctx context.Context, conf *coordinatorproto.DeletionConfirmPayloadWithSignature) (timestamp int64, err error) {
|
||||
confMarshalled, err := conf.Marshal()
|
||||
if err != nil {
|
||||
return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue