fix(dns): correct provider-dns.js require path after dns-providers/ move to src/dns/
CI / Test & Lint (push) Has been cancelled
CI / Security audit (push) Has been cancelled

This commit is contained in:
Sami
2026-06-29 00:48:50 -07:00
parent a37f4f571d
commit 7ef99ec42b
+1 -1
View File
@@ -8,7 +8,7 @@
*/
const { createCache, CACHE_CONFIGS } = require('../utilities/cache-config');
const { TIMEOUTS, SESSION_TTL, CADDY } = require('../utilities/constants');
const registry = require('../../dns-providers/registry');
const registry = require('../dns/dns-providers/registry');
// Per-server token cache (legacy Technitium)
const dnsServerTokens = createCache(CACHE_CONFIGS.dnsTokens);