fix: correct dns-caching module configuration

This commit is contained in:
Gauthier
2025-06-19 14:05:10 +02:00
committed by gauthier-th
parent ec4ed21a49
commit eae78ec728

5
server/utils/dnsCache.ts Normal file
View File

@@ -0,0 +1,5 @@
import logger from '@server/logger';
import { DnsCacheManager } from 'dns-caching';
const dnsCache = new DnsCacheManager({ logger });
export default dnsCache;