mirror of
https://github.com/rekryt/iplist.git
synced 2025-06-20 16:16:06 +02:00
17 lines
340 B
PHP
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();
|