mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-21 03:17:05 +08:00
14 lines
203 B
PHP
14 lines
203 B
PHP
#!/usr/bin/env php
|
|
|
|
<?php
|
|
|
|
use Bootstrap\ConsoleKernel;
|
|
|
|
require __DIR__ . '/bootstrap/Kernel.php';
|
|
require __DIR__ . '/bootstrap/ConsoleKernel.php';
|
|
|
|
$kernel = new ConsoleKernel();
|
|
|
|
$kernel->handle();
|
|
|