CSY2028-assignment-2/public/index.php

7 lines
134 B
PHP
Raw Normal View History

2023-01-21 23:12:42 +00:00
<?php
require '../autoload.php';
$routes = new \jobs\Routes();
$entryPoint = new \CSY2028\EntryPoint($routes);
$entryPoint->run();
?>