Files
Jump/jumpapp/index.php
2022-03-15 21:38:39 +00:00

14 lines
292 B
PHP

<?php
/**
* Initialise the application, generate and output page content.
*
* @author Dale Davies <dale@daledavies.co.uk>
* @license MIT
*/
// Provided by composer for psr-4 style autoloading.
require __DIR__ .'/vendor/autoload.php';
$jumpapp = new Jump\Main();
echo $jumpapp->init();