<?php
/**
 * Kickoff theme setup and build
 */

namespace WP_Tailwind;

define( 'WP_Tailwind_VERSION', wp_get_theme()->version );
define( 'WP_Tailwind_DIR', __DIR__ );
define( 'WP_Tailwind_URL', get_template_directory_uri() );

try {
	\A7\autoload( __DIR__ . '/src' );
} catch ( \Exception $e ) {
	echo $e->getMessage();
	die;
}