# SPDX-FileCopyrightText: 2021 Kirill Elagin # # SPDX-License-Identifier: MPL-2.0 or MIT { lib ? import , }: let dns = import ./dns { inherit lib; }; in { inherit (dns) evalZone; inherit (dns) combinators; inherit (dns) types; toString = name: zone: dns.types.zoneToString name (dns.evalZone name zone); } // dns.combinators