1
0
mirror of https://github.com/danog/dns.git synced 2024-12-03 09:57:56 +01:00
dns/lib/ConfigLoader.php

11 lines
115 B
PHP
Raw Permalink Normal View History

<?php
namespace Amp\Dns;
use Amp\Promise;
2019-01-25 02:27:47 +01:00
interface ConfigLoader
{
public function loadConfig(): Promise;
}