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/synctestproto/helpers.go
2024-08-02 11:14:12 +02:00

11 lines
185 B
Go

package synctestproto
import "github.com/anyproto/protobuf/proto"
func (c *CounterIncrease) MsgSize() uint64 {
if c != nil {
return uint64(proto.Size(c))
} else {
return 0
}
}