Files

17 lines
384 B
Objective-C
Raw Normal View History

2018-03-17 20:36:40 -04:00
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
2018-04-24 22:41:10 -04: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-17 20:36:40 -04:00
*/
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}