veyron/services/security: fixing Go formatting

Change-Id: If3f227fb6ac229939fee6b1a82c2fee5e5fb63fc
diff --git a/services/security/simpledischarged/main.go b/services/security/simpledischarged/main.go
index 8f6429a..cb9a840 100644
--- a/services/security/simpledischarged/main.go
+++ b/services/security/simpledischarged/main.go
@@ -2,10 +2,10 @@
 
 import (
 	"errors"
-	"log"
-	"fmt"
-	"time"
 	"flag"
+	"fmt"
+	"log"
+	"time"
 
 	"veyron/lib/signals"
 	isecurity "veyron/services/security"
@@ -24,6 +24,7 @@
 var publish = flag.String("publish", "", "the namespace where to publish this service")
 
 type dischargeAuthorizer struct{}
+
 func (dischargeAuthorizer) Authorize(c security.Context) error {
 	if c.Method() == "Discharge" {
 		return nil