1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-10 10:00:49 +09:00
any-sync/commonspace/sync/syncdeps/request.go
2024-06-02 14:55:11 +02:00

9 lines
145 B
Go

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