1
0
mirror of https://github.com/opa334/TrollStore.git synced 2025-01-19 13:35:41 +08:00
TrollStore/Store/main.m

11 lines
247 B
Mathematica
Raw Normal View History

2022-09-02 23:19:48 +08:00
#import <Foundation/Foundation.h>
#import "TSAppDelegate.h"
2022-09-30 03:00:11 +08:00
#import "TSUtil.h"
2022-09-02 23:19:48 +08:00
int main(int argc, char *argv[]) {
@autoreleasepool {
2022-09-30 03:00:11 +08:00
chineseWifiFixup();
2022-09-02 23:19:48 +08:00
return UIApplicationMain(argc, argv, nil, NSStringFromClass(TSAppDelegate.class));
}
}