10 lines
130 B
JavaScript
Raw Normal View History

2022-07-21 10:39:53 +02:00
'use strict';
const domain = require('./domain');
const engine = require('./engine');
module.exports = {
domain,
engine,
};