// Code generated by protoc-gen-go. // source: asim/go-micro/template/proto/example/example.proto // DO NOT EDIT! package go_micro_service_template_example import proto "code.google.com/p/goprotobuf/proto" import json "encoding/json" import math "math" // Reference proto, json, and math imports to suppress error if they are not otherwise used. var _ = proto.Marshal var _ = &json.SyntaxError{} var _ = math.Inf type Request struct { Name *string `protobuf:"bytes,1,req,name=name" json:"name,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Request) Reset() { *m = Request{} } func (m *Request) String() string { return proto.CompactTextString(m) } func (*Request) ProtoMessage() {} func (m *Request) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } type Response struct { Msg *string `protobuf:"bytes,1,req,name=msg" json:"msg,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Response) Reset() { *m = Response{} } func (m *Response) String() string { return proto.CompactTextString(m) } func (*Response) ProtoMessage() {} func (m *Response) GetMsg() string { if m != nil && m.Msg != nil { return *m.Msg } return "" } func init() { }