mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
11 lines
199 B
Objective-C
11 lines
199 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]));
|
|
}
|
|
}
|