mirror of
https://github.com/Spengreb/sync.git
synced 2026-05-15 03:52:06 +00:00
15 lines
245 B
JavaScript
15 lines
245 B
JavaScript
class PartitionConfig {
|
|
constructor(config) {
|
|
this.config = config;
|
|
}
|
|
|
|
getIdentity() {
|
|
return this.config.identity;
|
|
}
|
|
|
|
getRedisConfig() {
|
|
return this.config.redis;
|
|
}
|
|
}
|
|
|
|
export { PartitionConfig };
|