Skip to content

Commit

Permalink
Create a new flag for supporting proxy host and port
Browse files Browse the repository at this point in the history
  • Loading branch information
AayushSaini101 committed Dec 23, 2024
1 parent 1ce4e9a commit 4264f49
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/core/flags/proxy.flags.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { Flags } from '@oclif/core';

export const proxyFlag = () => {
return {
proxyHost: Flags.string({
description: 'Name of the ProxyHost',
}),
proxyPort: Flags.string({
description: "Port number number for the proxyHost."
})
}
};


0 comments on commit 4264f49

Please sign in to comment.