Miguel Ping

Results 3 issues of Miguel Ping

Consider the following proto definition: ``` enum JobStatus { JOBSTATUS_UNKNOWN = 0; JOBSTATUS_NEW = 1; } message Request { optional JobStatus status = 1; optional string str = 2; }...

Related to #22. I think it would be useful to allow encoders for top-level protobuf objects: ``` (defmapper mapper [ObjectReference] :encoders {ObjectReference {:from-proto (fn [^ObjectReference proto-obj] ...) :to-proto (fn [clj-map]...