mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-10 10:00:49 +09:00
9 lines
145 B
Go
9 lines
145 B
Go
package syncdeps
|
|
|
|
import "github.com/gogo/protobuf/proto"
|
|
|
|
type Request interface {
|
|
PeerId() string
|
|
ObjectId() string
|
|
Proto() proto.Message
|
|
}
|