1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/packages/app-mobile/ios/Joplin/main.m

11 lines
199 B
Mathematica
Raw Normal View History

2017-05-06 16:37:28 +02:00
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
2022-12-27 21:37:15 +02:00
int main(int argc, char *argv[])
{
2017-05-06 16:37:28 +02:00
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}