- Minor cleanup

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-01-22 17:21:46 -05:00
parent 7f587680ca
commit eabbc2211b
18 changed files with 262 additions and 257 deletions

View File

@@ -0,0 +1,7 @@
const express = require('express');
const router = express.Router();
const ioevent = require('../ioevent/ioevent');
router.post('/', ioevent.default);
module.exports = router;