mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 11:39:17 +00:00
11 lines
201 B
Objective-C
11 lines
201 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]));
|
|
}
|
|
}
|
|
|