1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1x 1x 1x 216x 72x 72x |
import BaseEngine from './commons/base-engine';
import makeDebug from 'debug';
const debug = makeDebug('realtime-engine');
export default class RealtimeEngine extends BaseEngine {
constructor (service, options = {}) {
debug('constructor started');
super(service, options);
debug('constructor ended');
}
}
|