Files
checker/ios/develop/main.m
2017-10-23 20:25:04 +03:00

17 lines
342 B
Objective-C

//
// main.m
// develop
//
// Created by Ntrlab on 23/10/2017.
// Copyright © 2017 The Chromium Authors. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}