CSY2028-assignment-2/public/index.php

8 lines
151 B
PHP

<?php
session_start();
require '../autoload.php';
$routes = new \jobs\Routes();
$entryPoint = new \CSY2028\EntryPoint($routes);
$entryPoint->run();
?>