Files
Jump/jumpapp/index.php

14 lines
292 B
PHP
Raw Permalink Normal View History

2022-02-04 09:53:55 +00:00
<?php
2022-02-04 11:52:57 +00:00
/**
2022-03-15 21:38:39 +00:00
* Initialise the application, generate and output page content.
2022-02-04 11:52:57 +00:00
*
* @author Dale Davies <dale@daledavies.co.uk>
* @license MIT
*/
2022-02-04 09:53:55 +00:00
// Provided by composer for psr-4 style autoloading.
require __DIR__ .'/vendor/autoload.php';
$jumpapp = new Jump\Main();
2022-03-15 21:38:39 +00:00
echo $jumpapp->init();