patchbay-scry
Version:
figure out a meeting time with friends, (like doodle, but for scuttlebutt)
36 lines (35 loc) • 775 B
JavaScript
module.exports = {
scry: {
app: {
page: {
scryIndex: require('./app/page/scry-index'),
scryNew: require('./app/page/scry-new'),
scryShow: require('./app/page/scry-show')
}
},
message: {
html: {
render: {
pollResolution: require('./message/html/render/poll-resolution.js'),
scryNotification: require('./message/html/render/scry-notification.js')
}
}
},
router: {
sync: {
routes: require('./router/sync/routes')
}
},
scry: {
html: {
button: require('./scry/html/button')
},
sync: {
launchModal: require('./scry/sync/launch-modal')
}
},
styles: {
mcss: require('./styles/mcss')
}
}
}