summary refs log tree commit diff stats
path: root/svc/init.go
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2019-06-11 19:07:38 -0400
committerGitHub <noreply@github.com>2019-06-11 19:07:38 -0400
commit9a0bbd716ff234475dc7b2efa3e3c2ef96bd5454 (patch)
tree7915b74fe7be9bde61ccfd408cc3bbeb170265d8 /svc/init.go
parentd4af885c40ba55ea0ed9adade98afe0658099c47 (diff)
parent45ee3c060433c58a0a89de223655381933e7df11 (diff)
downloadgetwtxt-9a0bbd716ff234475dc7b2efa3e3c2ef96bd5454.tar.gz
Merge pull request #4 from getwtxt/tls-conn-and-name-resolv
TLS Support, Name Resolution Support
Diffstat (limited to 'svc/init.go')
-rw-r--r--svc/init.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/svc/init.go b/svc/init.go
index d7419de..fe83145 100644
--- a/svc/init.go
+++ b/svc/init.go
@@ -19,9 +19,9 @@ var (
 	flagHelp     *bool   = pflag.BoolP("help", "h", false, "Display the quick-help screen.")
 	flagMan      *bool   = pflag.BoolP("manual", "m", false, "Display the configuration manual.")
 	flagConfFile *string = pflag.StringP("config", "c", "", "The name/path of the configuration file you wish to use.")
-	flagAssets   *string = pflag.StringP("assets", "a", "", "The location of the getwtxt assets directory")
-	flagDBPath   *string = pflag.StringP("db", "d", "", "Path to the getwtxt database")
-	flagDBType   *string = pflag.StringP("dbtype", "t", "", "Type of database being used")
+	flagAssets   *string = pflag.StringP("assets", "a", "", "The location of the getwtxt assets directory.")
+	flagDBPath   *string = pflag.StringP("db", "d", "", "Path to the getwtxt database.")
+	flagDBType   *string = pflag.StringP("dbtype", "t", "", "Type of database being used.")
 )
 
 // Holds the global configuration