Files
transshift/TransmissionRPCClient/main.m
Alexey Chechetkin 21bd201242 Initial Commit
2015-06-23 17:34:14 +03:00

17 lines
363 B
Objective-C

//
// main.m
// TransmissionRPCClient
//
// Created by Alexey Chechetkin on 23.06.15.
// Copyright (c) 2015 Alexey Chechetkin. 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]));
}
}