phpvms/bootstrap/app.php

13 lines
192 B
PHP
Raw Normal View History

2017-06-09 02:28:26 +08:00
<?php
2017-08-15 07:41:55 +08:00
if(!defined('LUMEN_START')) {
define('LUMEN_START', microtime(true));
}
2017-08-15 07:26:20 +08:00
2017-12-17 12:13:53 +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();
$app->bindInterfaces();
2017-06-09 02:28:26 +08:00
return $app;