#!/usr/bin/env php
<?php

use think\App;

require __DIR__ . '/../../vendor/autoload.php';

$app = new App(__DIR__);

$app->console->addCommands([\think\swoole\command\Server::class]);

$app->console->run();
