7 lines
134 B
PHP
7 lines
134 B
PHP
|
|
<?php
|
||
|
|
require '../autoload.php';
|
||
|
|
$routes = new \jobs\Routes();
|
||
|
|
$entryPoint = new \CSY2028\EntryPoint($routes);
|
||
|
|
$entryPoint->run();
|
||
|
|
?>
|