diff --git a/src/github.com/microsoft/vscode-remote-try-go/hello/hello.go b/src/hello/hello.go similarity index 100% rename from src/github.com/microsoft/vscode-remote-try-go/hello/hello.go rename to src/hello/hello.go diff --git a/src/github.com/microsoft/vscode-remote-try-go/main/server.go b/src/main/server.go similarity index 92% rename from src/github.com/microsoft/vscode-remote-try-go/main/server.go rename to src/main/server.go index 91d962d..2afa31f 100644 --- a/src/github.com/microsoft/vscode-remote-try-go/main/server.go +++ b/src/main/server.go @@ -7,7 +7,7 @@ package main import ( "fmt" - "github.com/microsoft/vscode-remote-try-go/hello" + "hello" "io" "net/http" )