2022-02-04 09:53:55 +00:00
|
|
|
<?php
|
2022-02-04 11:52:57 +00:00
|
|
|
/**
|
2022-07-19 16:38:55 +01:00
|
|
|
* ██ ██ ██ ███ ███ ██████
|
|
|
|
|
* ██ ██ ██ ████ ████ ██ ██
|
|
|
|
|
* ██ ██ ██ ██ ████ ██ ██████
|
|
|
|
|
* ██ ██ ██ ██ ██ ██ ██ ██
|
|
|
|
|
* █████ ██████ ██ ██ ██
|
2022-02-04 11:52:57 +00:00
|
|
|
*
|
|
|
|
|
* @author Dale Davies <dale@daledavies.co.uk>
|
2022-07-19 16:38:55 +01:00
|
|
|
* @copyright Copyright (c) 2022, Dale Davies
|
2022-02-04 11:52:57 +00:00
|
|
|
* @license MIT
|
|
|
|
|
*/
|
|
|
|
|
|
2022-07-19 16:38:55 +01:00
|
|
|
/**
|
|
|
|
|
* Initialise the application, generate and output page content.
|
|
|
|
|
*/
|
|
|
|
|
|
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();
|