Bladeren bron

Fix CLI flags declaration

Brendan Abolivier 6 jaren geleden
bovenliggende
commit
8f4a37edb6
Getekend door: Brendan Abolivier <contact@brendanabolivier.com> GPG key ID: 8EF1500759F70623
2 gewijzigde bestanden met toevoegingen van 2 en 8 verwijderingen
  1. 1
    4
      src/puller/main.go
  2. 1
    4
      src/pusher/main.go

+ 1
- 4
src/puller/main.go Bestand weergeven

@@ -7,11 +7,8 @@ import (
7 7
 	"grafana"
8 8
 )
9 9
 
10
-var (
11
-	configFile = flag.String("config", "config.yaml", "Path to the configuration file")
12
-)
13
-
14 10
 func main() {
11
+	configFile := flag.String("config", "config.yaml", "Path to the configuration file")
15 12
 	flag.Parse()
16 13
 
17 14
 	cfg, err := config.Load(*configFile)

+ 1
- 4
src/pusher/main.go Bestand weergeven

@@ -15,13 +15,10 @@ var (
15 15
 	cfg           *config.Config
16 16
 )
17 17
 
18
-var (
19
-	configFile = flag.String("config", "config.yaml", "Path to the configuration file")
20
-)
21
-
22 18
 func main() {
23 19
 	var err error
24 20
 
21
+	configFile := flag.String("config", "config.yaml", "Path to the configuration file")
25 22
 	flag.Parse()
26 23
 
27 24
 	cfg, err = config.Load(*configFile)