mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-17 21:10:43 +00:00
12 lines
295 B
Mathematica
12 lines
295 B
Mathematica
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
|
// Licensed under the MIT License.
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "AppDelegate.h"
|
||
|
|
|
||
|
|
int main(int argc, char* argv[]) {
|
||
|
|
@autoreleasepool {
|
||
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
||
|
|
}
|
||
|
|
}
|