haplousframework/index.php

11 lines
158 B
PHP
Raw Normal View History

2016-04-15 03:01:11 +00:00
<?php
foreach (glob("system/vendor/*.php") as $filename)
{
include $filename;
}
require('system/engine/core.php');
$core = new HF_Core();
2014-04-18 03:05:44 +00:00
$core->run();