2019-08-17 13:47:43 +08:00
|
|
|
//
|
|
|
|
// main.m
|
|
|
|
// ProxyConfigHelper
|
|
|
|
//
|
|
|
|
// Created by yichengchen on 2019/8/16.
|
|
|
|
// Copyright © 2019 west2online. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "ProxyConfigHelper.h"
|
|
|
|
int main(int argc, const char * argv[]) {
|
|
|
|
@autoreleasepool {
|
2021-08-29 22:45:38 +08:00
|
|
|
[[NSProcessInfo processInfo] disableSuddenTermination];
|
2019-08-17 13:47:43 +08:00
|
|
|
[[ProxyConfigHelper new] run];
|
|
|
|
NSLog(@"ProxyConfigHelper exit");
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|