Skip to content

Commit

Permalink
added GetMethodResponseHandler in IntentReader.js
Browse files Browse the repository at this point in the history
  • Loading branch information
the-niresh authored Oct 18, 2023
1 parent 75fac0c commit a57af1a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/IntentReader.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ import SetApiResponseHandler from './pubsub/handlers/setApiResponseHandler';
import LifecycleRecordHandler from './pubsub/handlers/lifecycleRecordHandler';
import RegisterProviderHandler from './pubsub/handlers/RegisterProviderHandler';
import GetEventResponse from './pubsub/handlers/GetEventResponse';
import GetMethodResponseHandler from './pubsub/handlers/GetMethodResponseHandler';

const logger = require('./utils/Logger')('IntentReader.js');

Expand All @@ -59,6 +60,7 @@ const handlers = {
startLifecycleRecording: new LifecycleRecordHandler('startLifecycleRecording'),
stopLifecycleRecording: new LifecycleRecordHandler('stopLifecycleRecording'),
getEventResponse: new GetEventResponse('getEventResponse'),
getMethodResponse: new GetMethodResponseHandler('getMethodResponse'),
[CONSTANTS.CALL_METHOD]: new CallMethodHandler(CONSTANTS.CALL_METHOD),
[CONSTANTS.HEALTH_CHECK]: new HealthCheckHandler(CONSTANTS.HEALTH_CHECK),
};
Expand Down

0 comments on commit a57af1a

Please sign in to comment.