From b6cda78c17aae7233b15df7a0d9aea90d5747eec Mon Sep 17 00:00:00 2001 From: Alexander Krieg Date: Sat, 15 Jun 2019 13:38:07 +0000 Subject: [PATCH] Simplify folder structure --- .../microsoft/vscode-remote-try-go => }/hello/hello.go | 0 .../microsoft/vscode-remote-try-go => }/main/server.go | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{github.com/microsoft/vscode-remote-try-go => }/hello/hello.go (100%) rename src/{github.com/microsoft/vscode-remote-try-go => }/main/server.go (92%) 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" )