1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 'use strict';
- class ConnectionDelegate
- {
-
- constructor(options)
- {
- this.options = options;
- }
-
- handleInstruction(instruction, responseHandler, errorHandler)
- {
- responseHandler(null);
- }
- }
- module.exports = ConnectionDelegate;
|