main.m
350 Bytes
//
// main.m
// CNLiveBusinessTools
//
// Created by 郭瑞朋 on 05/08/2019.
// Copyright (c) 2019 郭瑞朋. All rights reserved.
//
@import UIKit;
#import "CNLiveAppDelegate.h"
int main(int argc, char * argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([CNLiveAppDelegate class]));
}
}