1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00
any-sync/commonspace/sync/syncdeps/request.go
2024-06-24 21:29:16 +02:00

10 lines
172 B
Go

package syncdeps
import "github.com/gogo/protobuf/proto"
type Request interface {
PeerId() string
ObjectId() string
Proto() (proto.Message, error)
MsgSize() uint64
}