1
0
mirror of https://github.com/danog/dns.git synced 2024-12-02 09:27:55 +01:00
dns/lib/ConfigLoader.php
2019-01-24 19:27:47 -06:00

11 lines
115 B
PHP

<?php
namespace Amp\Dns;
use Amp\Promise;
interface ConfigLoader
{
public function loadConfig(): Promise;
}