From f0db1ff1f85d03e91705f44b9fdb6f896e0d6453 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Sun, 24 Dec 2017 12:19:56 +0100 Subject: [PATCH] Mark option as deprecated Signed-off-by: Knut Ahlers --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index 2eca732..f2bbf2e 100644 --- a/config.go +++ b/config.go @@ -8,7 +8,7 @@ import ( type config struct { // General Config - PasswordSalt string `env:"passwordSalt" flag:"password-salt" description:"A random unique salt for encrypting the passwords"` + PasswordSalt string `env:"passwordSalt" flag:"password-salt" description:"[deprecated] A random unique salt for encrypting the passwords"` UsernameSalt string `env:"usernameSalt" flag:"username-salt" description:"A random unique salt for encrypting the usernames"` Storage string `env:"storage" flag:"storage" default:"local:///./data" description:"Configuration for storage adapter (see README.md)"` Listen string `flag:"listen" env:"listen" default:":3000" description:"IP and port to listen on"`