CSY2028-assignment-2/public/index.php

8 lines
250 B
PHP
Raw Normal View History

2023-01-21 23:12:42 +00:00
<?php
2023-02-05 23:35:31 +00:00
session_start(); //make sure session is started
require '../autoload.php'; //include autoload
$routes = new \jobs\Routes(); //get routes
$entryPoint = new \CSY2028\EntryPoint($routes); //get entrypoint
$entryPoint->run(); //start entrypoint
2023-01-21 23:12:42 +00:00
?>