11 lines
243 B
Go
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)
|
|
}
|