mirror of
https://github.com/LukeHagar/arbiter.git
synced 2025-12-10 04:19:26 +00:00
6 lines
227 B
JavaScript
6 lines
227 B
JavaScript
module.exports = function(...args) {
|
|
return import('./module.mjs').then(m => m.default.call(this, ...args))
|
|
}
|
|
const _meta = module.exports.meta = require('./module.json')
|
|
module.exports.getMeta = () => Promise.resolve(_meta)
|