YapDatabase/Framework/TestModuleMap-iOS/main.m
2015-11-03 12:41:46 -08:00

17 lines
333 B
Objective-C

//
// main.m
// TestModuleMap
//
// Created by Robbie Hanson on 11/3/15.
// Copyright © 2015 Deusty LLC. 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]));
}
}