This commit is contained in:
robin
2026-03-05 02:52:45 +08:00
parent 49776c3d0a
commit a10f3f3740
8 changed files with 171 additions and 351 deletions

View File

@@ -1,21 +1,17 @@
//
// DemoConfigLoader.h
// TrustHttpDNSTestDemo
//
// @author Created by Claude Code on 2025-10-05
// NewHttpDNSTestDemo
//
#import <Foundation/Foundation.h>
@interface DemoConfigLoader : NSObject
@property (nonatomic, assign, readonly) NSInteger accountID;
@property (nonatomic, copy, readonly) NSString *secretKey;
@property (nonatomic, copy, readonly) NSString *aesSecretKey;
@property (nonatomic, assign, readonly) BOOL hasValidAccount;
@property (nonatomic, copy, readonly) NSString *appId;
@property (nonatomic, copy, readonly) NSString *primaryServiceHost;
@property (nonatomic, assign, readonly) NSInteger servicePort;
@property (nonatomic, copy, readonly, nullable) NSString *signSecret;
+ (instancetype)shared;
@end