123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package proto
- import "errors"
- type Stats struct{ Emalloc, Dmalloc, Encode, Decode, Chit, Cmiss, Size uint64 }
- func GetStats() Stats { return Stats{} }
- func MarshalMessageSet(interface{}) ([]byte, error) {
- return nil, errors.New("proto: not implemented")
- }
- func UnmarshalMessageSet([]byte, interface{}) error {
- return errors.New("proto: not implemented")
- }
- func MarshalMessageSetJSON(interface{}) ([]byte, error) {
- return nil, errors.New("proto: not implemented")
- }
- func UnmarshalMessageSetJSON([]byte, interface{}) error {
- return errors.New("proto: not implemented")
- }
- func RegisterMessageSetType(Message, int32, string) {}
|