fix dependencies building, looks like i cant use the sim bc libs are compiled for ios

This commit is contained in:
neon443
2025-06-05 11:17:37 +01:00
parent 2a2ed76f58
commit 7d206478ea
92 changed files with 14342 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#import <Foundation/Foundation.h>
@interface ConfigHelper : NSObject
/**
* Helper method to get a value from the configuration YAML.
*
* Assuming the values in the YAML file can be represented as NSDictionary, you
* can create a chain to get a deep value.
*
* Example:
*
* NSString *host = [ConfigHelper valueForKey:
* @"valid_password_protected_server.host"];
*/
+ (id)valueForKey:(NSString *)key;
@end