mirror of
https://github.com/Spengreb/sync.git
synced 2026-05-14 03:32:06 +00:00
14 lines
217 B
JavaScript
14 lines
217 B
JavaScript
|
|
import NullClusterClient from './io/cluster/nullclusterclient';
|
||
|
|
|
||
|
|
class LegacyModule {
|
||
|
|
getClusterClient() {
|
||
|
|
return new NullClusterClient();
|
||
|
|
}
|
||
|
|
|
||
|
|
onReady() {
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export { LegacyModule };
|