sync/src/partition/partitionconfig.js
2016-10-15 12:36:20 -07:00

15 lines
245 B
JavaScript

class PartitionConfig {
constructor(config) {
this.config = config;
}
getIdentity() {
return this.config.identity;
}
getRedisConfig() {
return this.config.redis;
}
}
export { PartitionConfig };