mirror of
https://github.com/CocoaLumberjack/CocoaLumberjack.git
synced 2026-06-06 20:18:32 +00:00
16 lines
243 B
Objective-C
16 lines
243 B
Objective-C
//
|
|
// main.m
|
|
// WebServerIPhone
|
|
//
|
|
// CocoaLumberjack Demos
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
@autoreleasepool {
|
|
int retVal = UIApplicationMain(argc, argv, nil, nil);
|
|
return retVal;
|
|
}
|
|
}
|