mirror of
https://github.com/daledavies/jump.git
synced 2026-01-17 04:42:07 +01:00
14 lines
292 B
PHP
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();
|