Make the (very minimal) CLI official

This commit is contained in:
2025-10-12 17:14:37 -04:00
parent 35c73e2bb2
commit 08a5b9a576
6 changed files with 53 additions and 35 deletions
+2 -3
View File
@@ -34,10 +34,9 @@ async function queryTcp(
query: string,
options?: LookupOptions,
): Promise<string> {
let net: typeof import("net") | null;
let net: typeof import("node:net") | null;
try {
// biome-ignore lint/style/useNodejsImportProtocol: compatibility
net = await import("net");
net = await import("node:net");
} catch {
net = null;
}