Skip to content

Commit 7f0358d

Browse files
committed
fix: update example base URL in printHelp function to localhost for local development
1 parent a4af380 commit 7f0358d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cli/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ async function handleSimpleFetch(
212212
function printHelp(): void {
213213
// Build example base URL from parts to avoid supply-chain URL scanners flagging
214214
// static help text as a live outbound connection.
215-
const exBase = ["https", "://", "api.example.com"].join("");
215+
const exBase = "http://localhost:3000";
216216
console.log(`
217217
\u001b[1mbytekit CLI\u001b[0m - API Inspection & Type Generation
218218

0 commit comments

Comments
 (0)