From 9802fe8ca509854e24475d994e7bded12e93a907 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sat, 1 Dec 2012 18:41:06 -0500 Subject: [PATCH] Removing obsolete autoenv file and updating imports to match new layout --- sylvilagus/go/.example-autoenv.env | 2 -- sylvilagus/go/sylvilagus-chapter02-hello-world-consumer/main.go | 2 +- sylvilagus/go/sylvilagus-chapter02-hello-world-producer/main.go | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) delete mode 100644 sylvilagus/go/.example-autoenv.env diff --git a/sylvilagus/go/.example-autoenv.env b/sylvilagus/go/.example-autoenv.env deleted file mode 100644 index 29d73a9..0000000 --- a/sylvilagus/go/.example-autoenv.env +++ /dev/null @@ -1,2 +0,0 @@ -export GOPATH="$GOROOT:$HOME/src/box-o-sand/src/sylvilagus/go" -test -n "$GOROOT" && source "$GOROOT/misc/bash/go" diff --git a/sylvilagus/go/sylvilagus-chapter02-hello-world-consumer/main.go b/sylvilagus/go/sylvilagus-chapter02-hello-world-consumer/main.go index 74bf7ac..cae1bb5 100644 --- a/sylvilagus/go/sylvilagus-chapter02-hello-world-consumer/main.go +++ b/sylvilagus/go/sylvilagus-chapter02-hello-world-consumer/main.go @@ -5,8 +5,8 @@ import ( ) import ( + "github.com/meatballhat/box-o-sand/sylvilagus/go/sylvilagus" "github.com/streadway/amqp" - "meatballhat.com/sylvilagus" ) func main() { diff --git a/sylvilagus/go/sylvilagus-chapter02-hello-world-producer/main.go b/sylvilagus/go/sylvilagus-chapter02-hello-world-producer/main.go index 1a07bc5..6b40e8e 100644 --- a/sylvilagus/go/sylvilagus-chapter02-hello-world-producer/main.go +++ b/sylvilagus/go/sylvilagus-chapter02-hello-world-producer/main.go @@ -7,8 +7,8 @@ import ( ) import ( + "github.com/meatballhat/box-o-sand/sylvilagus/go/sylvilagus" "github.com/streadway/amqp" - "meatballhat.com/sylvilagus" ) func main() {