Adding fmt target to Makefile

Change-Id: I595fdee85dd34e401e8b4fa13215a86131b4c068
diff --git a/internal/bbsimctl/config/config.go b/internal/bbsimctl/config/config.go
index caf0601..7d11122 100644
--- a/internal/bbsimctl/config/config.go
+++ b/internal/bbsimctl/config/config.go
@@ -18,27 +18,27 @@
 package config
 
 import (
+	"fmt"
 	log "github.com/sirupsen/logrus"
+	"gopkg.in/yaml.v2"
 	"io/ioutil"
 	"net"
 	"os"
-	"fmt"
 	"time"
-	"gopkg.in/yaml.v2"
 )
 
 var (
-	Version 	string
-	BuildTime  	string
-	CommitHash 	string
-	GitStatus	string
+	Version    string
+	BuildTime  string
+	CommitHash string
+	GitStatus  string
 )
 
 var GlobalOptions struct {
-	Config   string `short:"c" long:"config" env:"BBSIMCTL_CONFIG" value-name:"FILE" default:"" description:"Location of client config file"`
-	Server   string `short:"s" long:"server" default:"" value-name:"SERVER:PORT" description:"IP/Host and port of XOS"`
+	Config string `short:"c" long:"config" env:"BBSIMCTL_CONFIG" value-name:"FILE" default:"" description:"Location of client config file"`
+	Server string `short:"s" long:"server" default:"" value-name:"SERVER:PORT" description:"IP/Host and port of XOS"`
 	//Protoset string `long:"protoset" value-name:"FILENAME" description:"Load protobuf definitions from protoset instead of reflection api"`
-	Debug    bool   `short:"d" long:"debug" description:"Enable debug mode"`
+	Debug bool `short:"d" long:"debug" description:"Enable debug mode"`
 }
 
 type GrpcConfigSpec struct {
@@ -46,8 +46,8 @@
 }
 
 type GlobalConfigSpec struct {
-	Server   string        `yaml:"server"`
-	Grpc     GrpcConfigSpec
+	Server string `yaml:"server"`
+	Grpc   GrpcConfigSpec
 }
 
 var GlobalConfig = GlobalConfigSpec{
@@ -90,7 +90,6 @@
 		GlobalConfig.Server = GlobalOptions.Server
 	}
 
-
 	// Generate error messages for required settings
 	if GlobalConfig.Server == "" {
 		log.Fatal("Server is not set. Please update config file or use the -s option")
@@ -102,4 +101,4 @@
 			GlobalConfig.Server = net.JoinHostPort(addrs[0], port)
 		}
 	}
-}
\ No newline at end of file
+}