flight-core/index.php

10 lines
117 B

<?php
require 'flight/Flight.php';
Flight::route('/', function () {
echo 'hello world!';
});
Flight::start();