fix(cli): remove unused Server import to fix lint error

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
suraj-markup 2026-03-01 19:23:58 +05:30
parent b027f5686e
commit 308d9dcf0d
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import { describe, it, expect, vi, afterEach } from "vitest";
import { mkdtempSync, writeFileSync, readFileSync, rmSync, existsSync } from "node:fs";
import { join } from "node:path";
import { tmpdir } from "node:os";
import { createServer, type Server } from "node:net";
import { createServer } from "node:net";
import { Command } from "commander";
import { parse as yamlParse } from "yaml";