/**
 * @class Service
 * @param {object} config - Configuration.
 *
 * Generated by {{generator}} on {{today}},
 * from a template provided by {{ pkg.name }}.
 *
 * @see https://facebook.github.io/react/
 */

'use strict'

import defineDebug from 'debug'

const debug = defineDebug('project:react:service')

/** @lends Service */
class Service {

  constructor(config) {
    const s = this
    Object.assign(s, config)
  }
}

export default Service
