From b1bf60b877ca0f4281e106fc54bbb1c4320d6599 Mon Sep 17 00:00:00 2001 From: Brian Tiger Chow Date: Wed, 29 Oct 2014 00:23:19 -0700 Subject: [PATCH] fix(cmd/ipfs2, commands) imports --- commands/http/handler.go | 2 +- commands/http/parse.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/http/handler.go b/commands/http/handler.go index 222a792d6..5888172b1 100644 --- a/commands/http/handler.go +++ b/commands/http/handler.go @@ -6,7 +6,7 @@ import ( "net/http" cmds "github.com/jbenet/go-ipfs/commands" - "github.com/jbenet/go-ipfs/core/commands" + commands "github.com/jbenet/go-ipfs/core/commands2" ) type Handler struct { diff --git a/commands/http/parse.go b/commands/http/parse.go index 719367c35..a84315e80 100644 --- a/commands/http/parse.go +++ b/commands/http/parse.go @@ -5,7 +5,7 @@ import ( "strings" cmds "github.com/jbenet/go-ipfs/commands" - "github.com/jbenet/go-ipfs/core/commands" + commands "github.com/jbenet/go-ipfs/core/commands2" ) // Parse parses the data in a http.Request and returns a command Request object