mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
11 lines
185 B
Go
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
|
|
}
|
|
}
|