evoadmin-mail/htdocs/index.php

10 lines
160 B
PHP
Raw Normal View History

<?php
spl_autoload_register(function ($class) {
2018-09-25 16:31:18 +02:00
if (file_exists("lib/$class.php")) { require_once("lib/$class.php"); }
});
DefaultController::init();
?>