// // HttpdnsRegionConfigLoader.h // NewHttpDNS // // Created by xuyecan on 2024/6/16. // Copyright © 2024 trustapp.com. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface HttpdnsRegionConfigLoader : NSObject + (instancetype)sharedInstance; + (NSArray *)getAvailableRegionList; - (NSArray *)getSeriveV4HostList:(NSString *)region; - (NSArray *)getUpdateV4FallbackHostList:(NSString *)region; - (NSArray *)getSeriveV6HostList:(NSString *)region; - (NSArray *)getUpdateV6FallbackHostList:(NSString *)region; @end NS_ASSUME_NONNULL_END