mirror of
https://github.com/tooot-app/app
synced 2025-04-29 09:28:47 +02:00
11 lines
200 B
Objective-C
11 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]));
|
|
}
|
|
}
|
|
|