From 1e86c6d4c54298e9d689c919075a870a383afc11 Mon Sep 17 00:00:00 2001 From: Nic Klaassen Date: Mon, 9 Dec 2024 14:12:00 -0800 Subject: [PATCH] fix-imports --- lib/vnet/admin_process.go | 3 ++- tool/tsh/common/vnet_darwin.go | 3 ++- tool/tsh/common/vnet_windows.go | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/vnet/admin_process.go b/lib/vnet/admin_process.go index 8e6a4854208ee..4c2411d729763 100644 --- a/lib/vnet/admin_process.go +++ b/lib/vnet/admin_process.go @@ -21,9 +21,10 @@ import ( "os" "time" - "github.com/gravitational/teleport/lib/vnet/daemon" "github.com/gravitational/trace" "golang.zx2c4.com/wireguard/tun" + + "github.com/gravitational/teleport/lib/vnet/daemon" ) // RunAdminProcess must run as root. It creates and sets up a TUN device and passes diff --git a/tool/tsh/common/vnet_darwin.go b/tool/tsh/common/vnet_darwin.go index 89b67cab1995d..213a971f092b7 100644 --- a/tool/tsh/common/vnet_darwin.go +++ b/tool/tsh/common/vnet_darwin.go @@ -21,11 +21,12 @@ import ( "os" "github.com/alecthomas/kingpin/v2" + "github.com/gravitational/trace" + "github.com/gravitational/teleport" "github.com/gravitational/teleport/api/types" "github.com/gravitational/teleport/lib/vnet" "github.com/gravitational/teleport/lib/vnet/daemon" - "github.com/gravitational/trace" ) type vnetCommand struct { diff --git a/tool/tsh/common/vnet_windows.go b/tool/tsh/common/vnet_windows.go index 9a49d7fb1371b..59d90972f2971 100644 --- a/tool/tsh/common/vnet_windows.go +++ b/tool/tsh/common/vnet_windows.go @@ -21,11 +21,12 @@ import ( "os" "github.com/alecthomas/kingpin/v2" + "github.com/gravitational/trace" + "github.com/gravitational/teleport" "github.com/gravitational/teleport/api/types" "github.com/gravitational/teleport/lib/vnet" "github.com/gravitational/teleport/lib/vnet/daemon" - "github.com/gravitational/trace" ) type vnetCommand struct {