2018-03-18 00:36:40 +00:00
|
|
|
/**
|
2019-04-23 02:52:40 +00:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2018-03-18 00:36:40 +00:00
|
|
|
*
|
2018-04-25 02:41:10 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2018-03-18 00:36:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
|
|
|
|
int main(int argc, char * argv[]) {
|
|
|
|
@autoreleasepool {
|
|
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
|
|
}
|
|
|
|
}
|