mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
10 lines
200 B
Objective-C
10 lines
200 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
int main(int argc, char * argv[]) {
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
}
|
|
}
|