blob: c8b94be216aaca0699b70a4a491ef8e178d585f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?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);
|