rekryt.iplist/index.php
2024-08-30 15:22:24 +03:00

17 lines
340 B
PHP

<?php
use OpenCCK\Infrastructure\API\App;
use OpenCCK\Infrastructure\API\Server;
use Amp\ByteStream\BufferException;
require_once 'vendor/autoload.php';
App::getInstance()
->addModule(
/**
* @throws Throwable
* @throws BufferException
*/ fn(App $app) => Server::getInstance()
)
->start();