Browse Source

Change import style to prevent recursive deps issue

Zane Kansil 10 years ago
parent
commit
e86798ae10
1 changed files with 3 additions and 1 deletions
  1. 3 1
      frameworks/Go/goji/setup.sh

+ 3 - 1
frameworks/Go/goji/setup.sh

@@ -5,6 +5,8 @@
 # Where to find the go executable
 # Where to find the go executable
 export PATH="$GOROOT/bin:$PATH"
 export PATH="$GOROOT/bin:$PATH"
 
 
-go get ./...
+go get github.com/go-sql-driver/mysql
+go get github.com/zenazn/goji
+go get github.com/zenazn/goji/web
 
 
 go run src/goji/server.go &
 go run src/goji/server.go &