mirror of
https://github.com/sartography/uva-covid19-testing-kiosk.git
synced 2025-02-19 19:08:24 +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]));
|
|
}
|
|
}
|
|
|