mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-26 21:14:43 +01:00
9 lines
250 B
PHP
9 lines
250 B
PHP
|
<?php
|
||
|
|
||
|
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();
|