mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-07 21:47:02 +09:00
10 lines
176 B
Go
10 lines
176 B
Go
package syncdeps
|
|
|
|
import "github.com/anyproto/protobuf/proto"
|
|
|
|
type Request interface {
|
|
PeerId() string
|
|
ObjectId() string
|
|
Proto() (proto.Message, error)
|
|
MsgSize() uint64
|
|
}
|