main.m
359 Bytes
//
// main.m
// CNLiveServices
//
// Created by 153993236@qq.com on 07/22/2019.
// Copyright (c) 2019 153993236@qq.com. All rights reserved.
//
@import UIKit;
#import "CNLiveAppDelegate.h"
int main(int argc, char * argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([CNLiveAppDelegate class]));
}
}