/home/arranoyd/public_html/wp-content/plugins/wp-chatbot/wp-chatbot.php
<?php
/*
Plugin Name: WP Chatbot
Plugin URI:  https://mobilemonkey.com/wp-chatbot/
Description: MobileMonkey’s OmniChat™ widget is the fastest and simplest way to add live chat to your website. Enjoy hassle-free chatbot integration with advanced live agent takeover.
Version:     4.6
Author:      MobileMonkey
Author URI:  https://mobilemonkey.com/wp-chatbot/
License:     GPL2
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wp-chatbot
*/


if ( ! defined( 'ABSPATH' ) ) exit;


// Version - define HTCC_VERSION
if ( ! defined( 'HTCC_VERSION' ) ) {
	define( 'HTCC_VERSION', '4.6' );
}


/**
 * if premium set to true
 * and change add suffix to name, version
 * for wp.org - remove the pro folders
 */
if ( ! defined( 'HTCC_PRO' ) ) {
	define( 'HTCC_PRO', 'false' );
}

// define HTCC_PLUGIN_FILE
if ( ! defined( 'HTCC_PLUGIN_FILE' ) ) {
	define( 'HTCC_PLUGIN_FILE', __FILE__ );
}

// include main file
require_once 'inc/class-ht-cc.php';

// create instance for the main file - HT_CC
function ht_cc() {
	return HT_CC::instance();
}

ht_cc();