2019-05-27 01:59:56 -04:00
|
|
|
const path = require('path');
|
2019-09-18 00:03:29 -04:00
|
|
|
|
|
|
|
|
const ref = require('./node_modules/aqua').Reference;
|
|
|
|
|
|
|
|
|
|
const ExampleModule = require('./module.js');
|
2019-05-27 01:59:56 -04:00
|
|
|
|
2019-05-26 02:29:08 -04:00
|
|
|
module.exports = {
|
|
|
|
|
Entities: {
|
2019-05-27 02:15:34 -04:00
|
|
|
A: {
|
2019-09-18 00:03:29 -04:00
|
|
|
Code: ExampleModule,
|
|
|
|
|
Data: {
|
|
|
|
|
thing: ref('B'),
|
2019-05-27 17:13:46 -04:00
|
|
|
boop: true
|
2019-05-27 02:15:34 -04:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
B: {
|
2019-09-18 00:03:29 -04:00
|
|
|
Code: ExampleModule,
|
|
|
|
|
Data: {
|
|
|
|
|
thing: ref('B')
|
2019-05-26 02:29:08 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-09-18 00:03:29 -04:00
|
|
|
}
|
|
|
|
|
|