<?php
/**
* Krai application skeleton root script
* @package Application
* @author Greg McWhirter <hide@address.com>
* @copyright Copyright (c) 2008, Greg McWhirter
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
/**
* Includes the framework. Call Krai::Setup() and Krai::Run() to set things in motion.
*/
require_once "../Krai.php";
Krai::Setup("../includes/configs/krai.yml");
Krai::Uses(
Krai::$INCLUDES."/configs/application.config.php"
);
// 321go
Krai::Run();