From 69e0914a1f7d93560c966f9bdb1dcb702d332823 Mon Sep 17 00:00:00 2001 From: Fabricio Date: Tue, 24 Dec 2019 06:42:44 -0300 Subject: [PATCH] update flag description --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index 5577796..510e5b5 100644 --- a/config.go +++ b/config.go @@ -14,7 +14,7 @@ type Config struct { // ReadConfig reads the arguments from the command line func ReadConfig() Config { - targetURL := flag.String("url", "https://jsonplaceholder.typicode.com", "Required. Set the base url you want to capture") + targetURL := flag.String("url", "https://jsonplaceholder.typicode.com", "Required. Set the url you want to proxy") proxyPort := flag.String("port", "9000", "Set the proxy port") dashboardPort := flag.String("dashboard", "9001", "Set the dashboard port") maxCaptures := flag.Int("captures", 16, "Set how many captures to show in the dashboard")