1 #include "WorkletEventHandler.h"
2 
3 namespace reanimated {
4 
5 void WorkletEventHandler::process(
6     jsi::Runtime &rt,
7     const jsi::Value &eventValue) {
8   handler.callWithThis(rt, handler, eventValue);
9 }
10 
11 } // namespace reanimated
12