ide: use goimports instead of gofmt
Test Plan: changed import sorting and saved file. Imports were resorted.
X-Origin-Diff: phab/D413
GitOrigin-RevId: 72ce771a9724f62f839e44211ee5cd64c89c56d7
diff --git a/core/internal/integrity/common.go b/core/internal/integrity/common.go
index f92c008..6850a12 100644
--- a/core/internal/integrity/common.go
+++ b/core/internal/integrity/common.go
@@ -25,10 +25,11 @@
"net"
"strings"
- "git.monogon.dev/source/nexantic.git/core/generated/api"
- "git.monogon.dev/source/nexantic.git/core/internal/common"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
+
+ "git.monogon.dev/source/nexantic.git/core/generated/api"
+ "git.monogon.dev/source/nexantic.git/core/internal/common"
)
// Agent specifices the interface which every integrity agent needs to fulfill