export default class ConfigurableInstance {
  constructor(config = {}) {
    Object.assign(this, config);
  }
}
