This commit is contained in:
2026-05-13 19:58:16 +03:00
commit f5adeb292b
78 changed files with 12024 additions and 0 deletions

12
lib/modules/version.js Normal file
View File

@@ -0,0 +1,12 @@
const Factory = require('../factory')
module.exports = function(context) {
//
// Write the version object
//
context.output.write(Factory.version())
//
// Return a resolved promise
//
return Promise.resolve(context)
}