14 lines
208 B
PHP
14 lines
208 B
PHP
<?php
|
|
include 'boot.php';
|
|
|
|
$a = new App();
|
|
|
|
$files = glob('mod/*.php');
|
|
foreach($files as $file)
|
|
include_once($file);
|
|
|
|
|
|
$files = glob('include/*.php');
|
|
foreach($files as $file)
|
|
include_once($file);
|