Feat/studio clock (#60)

This commit is contained in:
Carlos Valente
2021-12-13 21:29:56 +01:00
committed by GitHub
parent 627cce7ba6
commit 80c2e9a8ba
26 changed files with 1099 additions and 135 deletions
+6
View File
@@ -7,6 +7,12 @@ const playbackController = require('../controllers/playbackController');
// create route between controller and '/playback/' endpoint
router.get('/', playbackController.pbGet);
// create route between controller and '/playback/onAir' endpoint
router.get('/onAir', playbackController.onAir);
// create route between controller and '/playback/offAir' endpoint
router.get('/offAir', playbackController.offAir);
// create route between controller and '/playback/start' endpoint
router.get('/start', playbackController.pbStart);