/********* jinkeh-customerservice.m Cordova Plugin Implementation *******/

#import <Cordova/CDV.h>
#import <JKCCFramework/JKCCFramework.h>
@interface CustomerServicePlugin : CDVPlugin {
  // Member variables go here.
}

- (void)startCustomerService:(CDVInvokedUrlCommand*)command;
@end

@implementation CustomerServicePlugin

- (void)startCustomerService:(CDVInvokedUrlCommand*)command
{
    [[JKCCCallCenter shareInstance] startLoginFromVC:self];
    
}

@end
