flight-core/index.php

11 lines
151 B

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