1
0
mirror of https://github.com/danog/dns.git synced 2024-11-26 20:14:51 +01:00
dns/lib/ConfigLoader.php

10 lines
115 B
PHP
Raw Permalink Normal View History

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