mirror of
https://github.com/danog/dns.git
synced 2024-11-26 20:14:51 +01:00
10 lines
115 B
PHP
10 lines
115 B
PHP
<?php
|
|
|
|
namespace Amp\Dns;
|
|
|
|
use Amp\Promise;
|
|
|
|
interface ConfigLoader {
|
|
public function loadConfig(): Promise;
|
|
}
|