playlist.js 258 B

12345678910111213
  1. 'use strict';
  2. /**
  3. * Schema for a playlist stored / cached in redis,
  4. * gets created when a playlist is in use
  5. * and therefore is put into the redis cache
  6. *
  7. * @param playlist
  8. * @returns {Object}
  9. */
  10. module.exports = (playlist) => {
  11. return playlist;
  12. };