mirror of https://github.com/calzoneman/sync.git
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 };
|