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/api/nodemanagement.go b/core/internal/api/nodemanagement.go
index 4268a0f..2becd00 100644
--- a/core/internal/api/nodemanagement.go
+++ b/core/internal/api/nodemanagement.go
@@ -29,13 +29,14 @@
 	"fmt"
 	"io"
 
-	"git.monogon.dev/source/nexantic.git/core/generated/api"
-	"git.monogon.dev/source/nexantic.git/core/pkg/tpm"
 	"github.com/gogo/protobuf/proto"
 	"go.etcd.io/etcd/clientv3"
 	"go.uber.org/zap"
 	"google.golang.org/grpc/codes"
 	"google.golang.org/grpc/status"
+
+	"git.monogon.dev/source/nexantic.git/core/generated/api"
+	"git.monogon.dev/source/nexantic.git/core/pkg/tpm"
 )
 
 const nodesPrefix = "nodes/"