mirror of
https://github.com/friendica/friendica
synced 2025-04-12 00:40:22 +00:00
13 lines
208 B
PHP
13 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);
|