rekryt.iplist/index.php

18 lines
340 B
PHP
Raw Permalink Normal View History

2024-08-30 15:22:24 +03:00
<?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();