main.m 563 Bytes
//
//  main.m
//  CNLiveCommuntyModule
//
//  Created by woshiliushiyu on 02/22/2022.
//  Copyright (c) 2022 woshiliushiyu. All rights reserved.
//

@import UIKit;
#import "CNLIVEAppDelegate.h"
#import <CNLiveEnvironment/CNLiveEnvironmentManager.h>
int main(int argc, char * argv[])
{
    @autoreleasepool {
        [CNLiveEnvironmentManager setAppType:CNLiveAppTypeUser environmentType:CNLiveDebugAppStore];//CNLiveProductionAppStore//CNLiveDebugAppStore];
        return UIApplicationMain(argc, argv, nil, NSStringFromClass([CNLIVEAppDelegate class]));
    }
}