export default class ApplicationSerializer {
  constructor(config) {
    Object.assign(this, config);
  }
  static create(config) {
    return new this(config);
  }
  normalizeResponse(_, __, data) { return data; }
}