diff options
author | Alex <alex@adnab.me> | 2020-02-02 15:01:35 +0100 |
---|---|---|
committer | Gitea <gitea@fake.local> | 2020-02-02 15:01:35 +0100 |
commit | f32c272db27d9b99f7ae6b4663af3ee775b5676b (patch) | |
tree | 83d980e04b35545c75ed386c55051c797b53043c /main.go | |
parent | 0c801e02d5b9804c5444d4e923babc34ee05b61c (diff) | |
parent | a6faceb5590e233b474bc65a55e2992afdefd07b (diff) | |
download | bottin-f32c272db27d9b99f7ae6b4663af3ee775b5676b.tar.gz bottin-f32c272db27d9b99f7ae6b4663af3ee775b5676b.zip |
Merge branch 'gomod' of Deuxfleurs/bottin into master
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -13,9 +13,10 @@ import ( "os/signal" "syscall" - ldap "./ldapserver" + ldap "bottin/ldapserver" + consul "github.com/hashicorp/consul/api" - message "github.com/vjeantet/goldap/message" + message "github.com/lor00x/goldap/message" log "github.com/sirupsen/logrus" ) @@ -37,7 +38,7 @@ type ConfigFile struct { TLSCertFile string `json:"tls_cert_file"` TLSKeyFile string `json:"tls_key_file"` TLSServerName string `json:"tls_server_name"` - LogLevel string `json:"log_level"` + LogLevel string `json:"log_level"` } type Config struct { |