//
//  DemoConfigServer.m
//  NebulaDemo
//
//  Created by Glance on 16/12/16.
//  Copyright © 2016年 Alipay. All rights reserved.
//

#import "DemoConfigServer.h"


@implementation DemoConfigServer
WHU_SYNTHESIZE_SINGLETON_FOR_CLASS(DemoConfigServer);

- (void)setShowMonitor:(BOOL)showMonitor
{
    _showMonitor = showMonitor;
//    [H5Monitor sharedInstance].monitorTableView.hidden = !showMonitor;
}

@end