2023-01-05 15:34:09 +03:00

11 lines
243 B
Go

package synchandler
import (
"context"
"github.com/anytypeio/any-sync/commonspace/spacesyncproto"
)
type SyncHandler interface {
HandleMessage(ctx context.Context, senderId string, request *spacesyncproto.ObjectSyncMessage) (err error)
}