blob: 47aecb514839c4b87ad5ae72045f5cb54e1cf5a9 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001// Copyright (c) 2014 Google Inc. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4//
5#import <UIKit/UIKit.h>
6#import "AppDelegate.h"
7
8int main(int argc, char* argv[]) {
9 @autoreleasepool {
10 return UIApplicationMain(argc, argv, nil,
11 NSStringFromClass([AppDelegate class]));
12 }
13}