haplousframework/index.php
Nathan Adams a7c962462d Adding template engine
Adding error handling
Adding basic SMTP class
core routing is working
2014-04-19 15:11:53 -05:00

11 lines
168 B
PHP

<?php
foreach (glob("system/vendor/*.php") as $filename)
{
include $filename;
}
require('system/engine/core.php');
$core = new HF_Core();
$core->run();