diff --git a/ego/cli/bundle_test.go b/ego/cli/bundle_test.go index e7a03fe5..b50bb418 100644 --- a/ego/cli/bundle_test.go +++ b/ego/cli/bundle_test.go @@ -18,9 +18,8 @@ import ( "path/filepath" "testing" - "ego/config" - "ego/internal/launch" - + "github.com/edgelesssys/ego/ego/config" + "github.com/edgelesssys/ego/ego/internal/launch" "github.com/spf13/afero" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/ego/cli/cli.go b/ego/cli/cli.go index 0951f704..6776974a 100644 --- a/ego/cli/cli.go +++ b/ego/cli/cli.go @@ -10,8 +10,7 @@ import ( "os" "path/filepath" - "ego/internal/launch" - + "github.com/edgelesssys/ego/ego/internal/launch" "github.com/spf13/afero" ) diff --git a/ego/cli/elf_test.go b/ego/cli/elf_test.go index 021f0979..9b9ecd41 100644 --- a/ego/cli/elf_test.go +++ b/ego/cli/elf_test.go @@ -15,8 +15,7 @@ import ( "path/filepath" "testing" - "ego/config" - + "github.com/edgelesssys/ego/ego/config" "github.com/spf13/afero" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/ego/cli/run.go b/ego/cli/run.go index fa68174c..95400b9a 100644 --- a/ego/cli/run.go +++ b/ego/cli/run.go @@ -9,7 +9,7 @@ package cli import ( "path/filepath" - "ego/internal/launch" + "github.com/edgelesssys/ego/ego/internal/launch" ) // Run runs a signed executable in standalone mode. diff --git a/ego/cli/sign.go b/ego/cli/sign.go index bd9ab4dc..f2c58037 100644 --- a/ego/cli/sign.go +++ b/ego/cli/sign.go @@ -15,7 +15,7 @@ import ( "path/filepath" "strconv" - "ego/config" + "github.com/edgelesssys/ego/ego/config" ) const ( diff --git a/ego/cli/sign_test.go b/ego/cli/sign_test.go index 52ea65b4..aa0b8fbe 100644 --- a/ego/cli/sign_test.go +++ b/ego/cli/sign_test.go @@ -15,8 +15,7 @@ import ( "strings" "testing" - "ego/config" - + "github.com/edgelesssys/ego/ego/config" "github.com/google/go-cmp/cmp" "github.com/spf13/afero" "github.com/stretchr/testify/assert" diff --git a/ego/cmd/bundle/main.go b/ego/cmd/bundle/main.go index 213aa3e7..d3005328 100644 --- a/ego/cmd/bundle/main.go +++ b/ego/cmd/bundle/main.go @@ -18,8 +18,7 @@ import ( "path/filepath" "syscall" - "ego/internal/launch" - + "github.com/edgelesssys/ego/ego/internal/launch" "github.com/spf13/afero" ) diff --git a/ego/cmd/clidocgen/main.go b/ego/cmd/clidocgen/main.go index eec58fe0..4c2e53f0 100644 --- a/ego/cmd/clidocgen/main.go +++ b/ego/cmd/clidocgen/main.go @@ -12,8 +12,7 @@ import ( "fmt" "regexp" - "ego/ego/cmd" - + "github.com/edgelesssys/ego/ego/ego/cmd" "github.com/spf13/cobra" "github.com/spf13/cobra/doc" ) diff --git a/ego/cmd/integration-test/main.go b/ego/cmd/integration-test/main.go index 22f5adcf..12b01a78 100644 --- a/ego/cmd/integration-test/main.go +++ b/ego/cmd/integration-test/main.go @@ -7,11 +7,11 @@ package main import ( - "ego/test" "io" "log" "os" + "github.com/edgelesssys/ego/ego/test" "github.com/klauspost/cpuid/v2" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/ego/cmd/marble-test/main.go b/ego/cmd/marble-test/main.go index dd594858..c6c84d44 100644 --- a/ego/cmd/marble-test/main.go +++ b/ego/cmd/marble-test/main.go @@ -13,7 +13,6 @@ import ( "crypto/tls" "crypto/x509" "crypto/x509/pkix" - "ego/test" "io/ioutil" "math/big" "net" @@ -23,6 +22,7 @@ import ( "syscall" "time" + "github.com/edgelesssys/ego/ego/test" "github.com/edgelesssys/marblerun/coordinator/rpc" "github.com/stretchr/testify/require" "google.golang.org/grpc" diff --git a/ego/cmd/test-marble/main.go b/ego/cmd/test-marble/main.go index a2ec5776..b33cf226 100644 --- a/ego/cmd/test-marble/main.go +++ b/ego/cmd/test-marble/main.go @@ -7,9 +7,9 @@ package main import ( - "ego/test" "os" + "github.com/edgelesssys/ego/ego/test" "github.com/stretchr/testify/assert" ) diff --git a/ego/ego/cmd/util.go b/ego/ego/cmd/util.go index 311e2f35..fb4613a0 100644 --- a/ego/ego/cmd/util.go +++ b/ego/ego/cmd/util.go @@ -10,9 +10,8 @@ import ( "fmt" "os" - "ego/cli" - "ego/internal/launch" - + "github.com/edgelesssys/ego/ego/cli" + "github.com/edgelesssys/ego/ego/internal/launch" "github.com/klauspost/cpuid/v2" "github.com/spf13/afero" "github.com/spf13/cobra" diff --git a/ego/ego/main.go b/ego/ego/main.go index 6d77d253..8f0ae674 100644 --- a/ego/ego/main.go +++ b/ego/ego/main.go @@ -10,7 +10,7 @@ import ( "fmt" "os" - "ego/ego/cmd" + "github.com/edgelesssys/ego/ego/ego/cmd" ) // Don't touch! Automatically injected at build-time. diff --git a/ego/go.mod b/ego/go.mod index 80a240ad..32e7b16d 100644 --- a/ego/go.mod +++ b/ego/go.mod @@ -1,4 +1,4 @@ -module ego +module github.com/edgelesssys/ego/ego go 1.20 diff --git a/ego/premain/core/core.go b/ego/premain/core/core.go index 8c17754f..99e9a91a 100644 --- a/ego/premain/core/core.go +++ b/ego/premain/core/core.go @@ -17,8 +17,7 @@ import ( "strings" "syscall" - "ego/config" - + "github.com/edgelesssys/ego/ego/config" "github.com/edgelesssys/marblerun/marble/premain" "github.com/spf13/afero" ) diff --git a/ego/premain/core/core_test.go b/ego/premain/core/core_test.go index d3a75d08..0c560182 100644 --- a/ego/premain/core/core_test.go +++ b/ego/premain/core/core_test.go @@ -16,8 +16,7 @@ import ( "syscall" "testing" - "ego/config" - + "github.com/edgelesssys/ego/ego/config" "github.com/spf13/afero" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/ego/premain/main.go b/ego/premain/main.go index 09f4405e..47e491e7 100644 --- a/ego/premain/main.go +++ b/ego/premain/main.go @@ -9,11 +9,11 @@ package main import "C" import ( - "ego/premain/core" "os" "syscall" "unsafe" + "github.com/edgelesssys/ego/ego/premain/core" "github.com/spf13/afero" )