mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-04 10:19:25 +02:00
8 lines
113 B
PHP
8 lines
113 B
PHP
<?php
|
|
|
|
namespace React\SocketClient;
|
|
|
|
interface ConnectorInterface
|
|
{
|
|
public function create($host, $port);
|
|
}
|