UNPKG

protobuf2swagger

Version:

Convert protobuf to swagger open api v2, v3 JSON

14 lines (12 loc) 237 B
function bakeRef(root, name) { try { const type = root.lookup(name); if (type) { return { $ref: `#/definitions/${type.fullName.slice(1)}`, }; } } catch (e) {} return {}; } module.exports = bakeRef;