mirror of
https://github.com/darlinghq/darling-security.git
synced 2025-03-01 06:56:12 +00:00
17 lines
318 B
Objective-C
17 lines
318 B
Objective-C
//
|
|
// main.m
|
|
// KeychainEntitledTestApp_ios
|
|
//
|
|
// Copyright (c) 2017 Apple Inc. All rights reserved.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "AppDelegate.h"
|
|
|
|
int main(int argc, char * argv[]) {
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
}
|
|
}
|