Files
dougal-software/lib/www/server/api/middleware/sequence/index.js
D. Berge 920ea83ece Add API endpoint to retrieve a single shotpoint.
This will be used by the new event dialogue in the
frontend to get shotpoint information when creating
or editing events.
2022-02-27 19:56:21 +01:00

8 lines
128 B
JavaScript

module.exports = {
list: require('./list'),
get: require('./get'),
patch: require('./patch'),
point: require('./point')
};