1
0
mirror of https://github.com/danog/dns.git synced 2024-11-26 20:14:51 +01:00
dns/lib/ConfigLoader.php
2017-06-17 12:30:38 +02:00

10 lines
115 B
PHP

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