summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2021-11-12 14:49:02 -0700
committermo khan <mo@mokhan.ca>2021-11-12 14:49:02 -0700
commit841922f46b2a96f1f1b533d99e21c0ababb1cff3 (patch)
tree7742a25ba98ae0d18733f5c83619a4c422e21664
parent170bd751477ba0bbdfcd1bb7beafb00fb251993c (diff)
feat: improve summary for each flagv0.1.1
-rw-r--r--main.go12
1 files changed, 5 insertions, 7 deletions
diff --git a/main.go b/main.go
index f4203d6..da9f9b3 100644
--- a/main.go
+++ b/main.go
@@ -22,13 +22,11 @@ import (
)
var (
- username = *flag.String("username", "", "username")
- password = *flag.String("password", "", "password")
- certificate = *flag.String("certificate", "", "certificate")
- key = *flag.String("key", "", "key")
- host = *flag.String("host", "127.0.0.1", "host")
- port = *flag.String("port", "8080", "port")
- verbose = *flag.Bool("verbose", false, "verbosity")
+ certificate = *flag.String("certificate", "", "Path to x509 Certificate fille")
+ key = *flag.String("key", "", "Path to the private key file")
+ host = *flag.String("host", "127.0.0.1", "Interface to bind to")
+ port = *flag.String("port", "8080", "Port to bind to")
+ verbose = *flag.Bool("verbose", false, "Enable verbose output")
)
type CertificateStore struct {