fixed tabs

This commit is contained in:
Paul Lecuq 2019-06-06 12:09:02 +02:00
parent 6f1f685e65
commit 237e737326
2 changed files with 9 additions and 9 deletions

View File

@ -1,3 +1,4 @@
{
"go.formatTool": "goimports"
"go.formatTool": "goimports",
"editor.tabSize": 2
}

View File

@ -2,9 +2,9 @@ package main
import (
"archive/zip"
"flag"
"fmt"
"time"
"flag"
_ "github.com/influxdata/influxdb1-client"
client "github.com/influxdata/influxdb1-client/v2"
@ -54,10 +54,9 @@ var now = time.Now()
var fpc FuelPricesConfig
var configpath string
func main() {
flag.StringVar(&configpath,"configfile","common.ini","config file to use with fuelprices section")
flag.StringVar(&configpath, "configfile", "common.ini", "config file to use with fuelprices section")
flag.Parse()
GetConfig(configpath, &fpc)