mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-05 20:03:41 +08:00
* Move SwipeCellKit & SlackTextViewController to Local Pods directory * Move playgrounds to own folder * Create podspec for MMMarkdown and move to Local Pods
19 lines
375 B
Objective-C
Executable File
19 lines
375 B
Objective-C
Executable File
//
|
|
// main.m
|
|
// Messenger-Programatic
|
|
//
|
|
// Created by Ignacio Romero Zurbuchen on 8/15/14.
|
|
// Copyright (c) 2014 Slack Technologies, 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]));
|
|
}
|
|
}
|