| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: Code Engine |
| 4 |
* Plugin URI: https://meowapps.com/ai-engine/ |
| 5 |
* Description: Code Engine helps you manage code snippets from Code Snippets and WP Code. It checks errors, gathers snippets, and creates JSON for AI models. |
| 6 |
* Version: 0.0.2 |
| 7 |
* Author: Meow Apps |
| 8 |
* Author URI: https://meowapps.com |
| 9 |
* Text Domain: code-engine |
| 10 |
* License: GPL v2 or later |
| 11 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| 12 |
*/ |
| 13 |
|
| 14 |
if ( ! defined( 'ABSPATH' ) ) exit; |
| 15 |
|
| 16 |
define( 'CDEGN_VERSION', '0.0.2' ); |
| 17 |
define( 'CDEGN_PREFIX', 'cdegn' ); |
| 18 |
define( 'CDEGN_DOMAIN', 'code-engine' ); |
| 19 |
define( 'CDEGN_ENTRY', __FILE__ ); |
| 20 |
define( 'CDEGN_PATH', dirname( __FILE__ ) ); |
| 21 |
define( 'CDEGN_URL', plugin_dir_url( __FILE__ ) ); |
| 22 |
|
| 23 |
require_once( 'classes/init.php' ); |
| 24 |
|
| 25 |
?> |
| 26 |
|