station.js 253 B

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