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