From 0f9ea68a2e5667936360dd0984df8092420743c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatko=20=C4=8Calu=C5=A1i=C4=87?= Date: Wed, 25 Oct 2017 18:16:14 +0200 Subject: [PATCH] Optimize Config struct (maligned) --- mux.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mux.go b/mux.go index 0fa5655..6d853f3 100644 --- a/mux.go +++ b/mux.go @@ -16,12 +16,12 @@ import ( var Config = struct { Path string Listen string - TLS bool Log string CPUProfile string - Debug bool + TLS bool AppendOnly bool Prometheus bool + Debug bool }{ Path: "/tmp/restic", Listen: ":8000",