mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-05-02 16:53:08 +00:00
19 lines
447 B
Objective-C
19 lines
447 B
Objective-C
//
|
|
// main.m
|
|
// whisper.objc
|
|
//
|
|
// Created by Georgi Gerganov on 23.10.22.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "AppDelegate.h"
|
|
|
|
int main(int argc, char * argv[]) {
|
|
NSString * appDelegateClassName;
|
|
@autoreleasepool {
|
|
// Setup code that might create autoreleased objects goes here.
|
|
appDelegateClassName = NSStringFromClass([AppDelegate class]);
|
|
}
|
|
return UIApplicationMain(argc, argv, nil, appDelegateClassName);
|
|
}
|