mirror of https://github.com/perkeep/perkeep.git
19 lines
358 B
Mathematica
19 lines
358 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// photobackup
|
||
|
//
|
||
|
// Created by Nick O'Neill on 10/20/13.
|
||
|
// Copyright (c) 2013 The Camlistore Authors. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
#import "LAAppDelegate.h"
|
||
|
|
||
|
int main(int argc, char * argv[])
|
||
|
{
|
||
|
@autoreleasepool {
|
||
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([LAAppDelegate class]));
|
||
|
}
|
||
|
}
|