Files
nats-python/my_template/template/hooks/befoje.js
T
2026-06-03 10:36:11 +02:00

9 lines
242 B
JavaScript

module.exports = {
'generate:before': ({ asyncapi, templateParams = {} }) => {
// Modify the AsyncAPI document before generation
if (templateParams.version) {
asyncapi._json.info.version = templateParams.version;
}
}
};