2017-06-09 02:28:26 +08:00
|
|
|
<?php
|
|
|
|
|
2018-08-27 00:40:04 +08:00
|
|
|
if (!defined('LUMEN_START')) {
|
2017-08-15 07:41:55 +08:00
|
|
|
define('LUMEN_START', microtime(true));
|
|
|
|
}
|
2017-08-15 07:26:20 +08:00
|
|
|
|
2018-08-27 00:40:04 +08:00
|
|
|
include_once __DIR__.'/application.php';
|
2017-06-09 02:28:26 +08:00
|
|
|
|
2017-12-17 12:13:53 +08:00
|
|
|
$app = new Application();
|
2017-12-17 12:02:45 +08:00
|
|
|
$app->bindInterfaces();
|
2017-06-09 02:28:26 +08:00
|
|
|
|
|
|
|
return $app;
|