fixed the code style with goimports

This commit is contained in:
Mebus 2017-11-25 19:42:48 +01:00 committed by Zlatko Čalušić
parent 6c846f856c
commit 75578acd66
4 changed files with 25 additions and 25 deletions

20
mux.go
View file

@ -14,17 +14,17 @@ import (
// Config struct holds program configuration.
var Config = struct {
Path string
Listen string
Log string
CPUProfile string
TLSKey string
TLSCert string
TLS bool
AppendOnly bool
Path string
Listen string
Log string
CPUProfile string
TLS bool
TLSKey string
TLSCert string
AppendOnly bool
PrivateRepos bool
Prometheus bool
Debug bool
Prometheus bool
Debug bool
}{
Path: "/tmp/restic",
Listen: ":8000",