mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-10 18:10:54 +09:00
11 lines
173 B
Go
11 lines
173 B
Go
package sync
|
|
|
|
import (
|
|
"context"
|
|
|
|
"storj.io/drpc"
|
|
)
|
|
|
|
type HeadUpdateHandler interface {
|
|
HandleHeadUpdate(ctx context.Context, headUpdate drpc.Message) (Request, error)
|
|
}
|