flight-core/index.php

10 lines
117 B

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