7 lines
182 B
PHP
7 lines
182 B
PHP
<?php
|
|
|
|
require 'vendor/autoload.php';
|
|
|
|
$handler = new \danog\MadelineProto\Server(['type' => AF_INET, 'protocol' => 0, 'address' => 'localhost', 'port' => 8005]);
|
|
$handler->start();
|