mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-23 00:31:03 +01:00
13 lines
180 B
JavaScript
13 lines
180 B
JavaScript
var manifest = [
|
|
'Host',
|
|
'HostGroup',
|
|
'Job',
|
|
'Identity',
|
|
'Playbook',
|
|
'Task',
|
|
'User'
|
|
];
|
|
|
|
manifest.forEach(function (model) {
|
|
module.exports[model] = require('./'+model);
|
|
}); |