1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-07 21:47:02 +09:00
any-sync/commonspace/sync/syncdeps/request.go
2024-08-02 11:14:12 +02:00

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
}