'use strict';

/**
 * Schema for a playlist stored / cached in redis,
 * gets created when a playlist is in use
 * and therefore is put into the redis cache
 *
 * @param playlist
 * @returns {Object}
 */
module.exports = (playlist) => {
	return playlist;
};