1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-10 18:10:54 +09:00
any-sync/commonspace/sync/headupdatehandler.go
2024-05-23 09:30:15 +02:00

11 lines
173 B
Go

package sync
import (
"context"
"storj.io/drpc"
)
type HeadUpdateHandler interface {
HandleHeadUpdate(ctx context.Context, headUpdate drpc.Message) (Request, error)
}