CSY2028-assignment-2/public/index.php

8 lines
151 B
PHP
Raw Normal View History

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