function parseToProto(json, proto){
return Object.assign(Object.create(proto), JSON.parse(json))
}
module.exports = { parseToProto }