mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 06:34:41 +01:00
10 lines
276 B
PHP
10 lines
276 B
PHP
<?php declare(strict_types=1);
|
|
|
|
use danog\MadelineProto\Settings\TLSchema;
|
|
use danog\MadelineProto\TL\Builder;
|
|
|
|
require __DIR__.'/../vendor/autoload.php';
|
|
|
|
$builder = new Builder(new TLSchema, __DIR__.'/../src/TL/TLParser.php', 'danog\\MadelineProto\\TL');
|
|
$builder->build();
|