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/message.go
Mikhail Rakhmanov 12ea073b98
Add object type to message for ignore purposes
# Conflicts:
#	commonspace/spacesyncproto/protos/spacesync.proto
#	commonspace/spacesyncproto/spacesync.pb.go
2025-04-03 14:58:35 +02:00

9 lines
188 B
Go

package syncdeps
import "github.com/anyproto/any-sync/commonspace/spacesyncproto"
type Message interface {
ObjectId() string
MsgSize() uint64
ObjectType() spacesyncproto.ObjectType
}