From fe6ef9ef0c9f8cf7c438083f2445a712804d7283 Mon Sep 17 00:00:00 2001 From: Josh Arnold Date: Thu, 4 Dec 2025 10:26:05 -0600 Subject: [PATCH] Add Foundation import to EMGObjCHelper.h ## What Add Foundation import to EMGObjCHelper.h ## Why? When using this tool in a bazel build system, due to the way the modules are set up, it seems this import was required for me to successfully build and use the tool. ## Test plan I successfully ran the tool and no longer encounter any errors. --- Sources/EMGFaultOrdering/EMGObjCHelper.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sources/EMGFaultOrdering/EMGObjCHelper.h b/Sources/EMGFaultOrdering/EMGObjCHelper.h index b60f84d..fb3028d 100644 --- a/Sources/EMGFaultOrdering/EMGObjCHelper.h +++ b/Sources/EMGFaultOrdering/EMGObjCHelper.h @@ -5,6 +5,8 @@ // Created by Noah Martin on 5/17/25. // +#import + @interface EMGObjCHelper : NSObject + (NSObject*)startServerWithCallback:(NSData* (^)())callback;