mirror of https://github.com/flightphp/core
10 lines
117 B
10 lines
117 B
![]()
14 years ago
|
<?php
|
||
|
require 'flight/Flight.php';
|
||
|
|
||
|
Flight::route('/', function(){
|
||
|
echo 'hello world!';
|
||
|
});
|
||
|
|
||
|
Flight::start();
|
||
|
?>
|