Initial commit

This commit is contained in:
Rekryt
2024-08-30 15:22:24 +03:00
commit 171e449744
46 changed files with 4638 additions and 0 deletions

17
index.php Normal file
View File

@@ -0,0 +1,17 @@
<?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();