Skip to content

Commit 54ec27e

Browse files
committed
修订引用
1 parent 5b65c02 commit 54ec27e

File tree

267 files changed

+825
-825
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

267 files changed

+825
-825
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ few other improvements to other parts of the codebase. Notably:
411411
- 81% coverage on blockstore ([ipfs/go-ipfs#3074](https://github.com/ipfs/go-ipfs/pull/3074))
412412
- 80% coverage of unixfs/mod ([ipfs/go-ipfs#3096](https://github.com/ipfs/go-ipfs/pull/3096))
413413
- 82% coverage on blocks ([ipfs/go-ipfs#3086](https://github.com/ipfs/go-ipfs/pull/3086))
414-
- 87% coverage on unixfs ([ipfs/go-ipfs#3492](https://github.com/ipfs/go-ipfs/pull/3492))
414+
- 87% coverage on unixfs ([ipfs/go-ipfs#3492](https://github.com/ipfs/go-ipfs/pull/3492))
415415
- Improve coverage on routing/offline ([ipfs/go-ipfs#3516](https://github.com/ipfs/go-ipfs/pull/3516))
416416
- Add test for flags package ([ipfs/go-ipfs#3449](https://github.com/ipfs/go-ipfs/pull/3449))
417417
- improve test coverage on merkledag package ([ipfs/go-ipfs#3113](https://github.com/ipfs/go-ipfs/pull/3113))

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ RUN apk add --no-cache --virtual .build-deps-ipfs musl-dev gcc go git \
5050
&& cd $SRC_PATH \
5151
&& gx --verbose install --global \
5252
&& mkdir .git/objects && commit=$(git rev-parse --short HEAD) \
53-
&& echo "ldflags=-X github.com/ipfs/go-ipfs/repo/config.CurrentCommit=$commit" \
53+
&& echo "ldflags=-X github.com/scroot/go-ipfs/repo/config.CurrentCommit=$commit" \
5454
# Build and install IPFS and entrypoint script
5555
&& cd $SRC_PATH/cmd/ipfs \
56-
&& go build -ldflags "-X github.com/ipfs/go-ipfs/repo/config.CurrentCommit=$commit" \
56+
&& go build -ldflags "-X github.com/scroot/go-ipfs/repo/config.CurrentCommit=$commit" \
5757
&& cp ipfs /usr/local/bin/ipfs \
5858
&& cp $SRC_PATH/bin/container_daemon /usr/local/bin/start_ipfs \
5959
&& chmod 755 /usr/local/bin/start_ipfs \

Dockerfile.fast

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ COPY . $SRC_PATH
4343

4444
RUN cd $SRC_PATH \
4545
&& mkdir .git/objects && commit=$(git rev-parse --short HEAD) \
46-
&& echo "ldflags=-X github.com/ipfs/go-ipfs/repo/config.CurrentCommit=$commit" \
46+
&& echo "ldflags=-X github.com/scroot/go-ipfs/repo/config.CurrentCommit=$commit" \
4747
&& cd $SRC_PATH/cmd/ipfs \
48-
&& go build -ldflags "-X github.com/ipfs/go-ipfs/repo/config.CurrentCommit=$commit" \
48+
&& go build -ldflags "-X github.com/scroot/go-ipfs/repo/config.CurrentCommit=$commit" \
4949
&& cp ipfs /usr/local/bin/ipfs \
5050
&& cp $SRC_PATH/bin/container_daemon /usr/local/bin/start_ipfs \
5151
&& chmod 755 /usr/local/bin/start_ipfs \

Godeps/_workspace/src/github.com/jbenet/go-random-files/random-files/main.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/github.com/jbenet/go-random-files/ringreader/ringreader.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/github.com/jbenet/go-random/random/random.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/github.com/texttheater/golang-levenshtein/levenshtein/levenshtein_test.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/assets.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99
"os"
1010
"path/filepath"
1111

12-
"github.com/ipfs/go-ipfs/core"
13-
"github.com/ipfs/go-ipfs/core/coreunix"
14-
uio "github.com/ipfs/go-ipfs/unixfs/io"
12+
"github.com/scroot/go-ipfs/core"
13+
"github.com/scroot/go-ipfs/core/coreunix"
14+
uio "github.com/scroot/go-ipfs/unixfs/io"
1515
cid "gx/ipfs/Qma4RJSuh7mMeJQYCqMbKzekn6EwBo7HEs5AQYjVRMQATB/go-cid"
1616

1717
// this import keeps gx from thinking the dep isn't used

assets/init-doc/contact

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Come hang out in our IRC chat room if you have any questions.
22

33
Contact the ipfs dev team:
4-
- Bugs: https://github.com/ipfs/go-ipfs/issues
4+
- Bugs: https://github.com/scroot/go-ipfs/issues
55
- Help: irc.freenode.org/#ipfs
66

bin/container_daemon

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fi
2424
# if the first argument is daemon
2525
if [ "$1" = "daemon" ]; then
2626
# filter the first argument until
27-
# https://github.com/ipfs/go-ipfs/pull/3573
27+
# https://github.com/scroot/go-ipfs/pull/3573
2828
# has been resolved
2929
shift
3030
else
@@ -35,8 +35,8 @@ else
3535
echo "DEPRECATED: arguments have been set but the first argument isn't 'daemon'" >&2
3636
echo "DEPRECATED: run 'docker run ipfs/go-ipfs daemon $@' instead" >&2
3737
echo "DEPRECATED: see the following PRs for more information:" >&2
38-
echo "DEPRECATED: * https://github.com/ipfs/go-ipfs/pull/3573" >&2
39-
echo "DEPRECATED: * https://github.com/ipfs/go-ipfs/pull/3685" >&2
38+
echo "DEPRECATED: * https://github.com/scroot/go-ipfs/pull/3573" >&2
39+
echo "DEPRECATED: * https://github.com/scroot/go-ipfs/pull/3685" >&2
4040
fi
4141

4242
exec ipfs daemon "$@"

bin/mkreleaselog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ do
88
commit=$(echo $MERGE | awk '{ print $1 }')
99
prnum=$(echo $MERGE | awk '{ print $5 }' | tr -d '#')
1010
desc=$(git show $commit | sed '8q;d' | sed 's/^ //g')
11-
printf " - %s ([ipfs/go-ipfs#%s](https://github.com/ipfs/go-ipfs/pull/%s))\n" "$desc" "$prnum" "$prnum"
11+
printf " - %s ([ipfs/go-ipfs#%s](https://github.com/scroot/go-ipfs/pull/%s))\n" "$desc" "$prnum" "$prnum"
1212
done

blocks/blockstore/blockstore.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"sync"
99
"sync/atomic"
1010

11-
dshelp "github.com/ipfs/go-ipfs/thirdparty/ds-help"
11+
dshelp "github.com/scroot/go-ipfs/thirdparty/ds-help"
1212
blocks "gx/ipfs/QmXxGS5QsUxpR3iqL5DjmsYPHR1Yz74siRQ4ChJqWFosMh/go-block-format"
1313

1414
logging "gx/ipfs/QmSpJByNKFX1sCsHBEp3R73FL4NF6FnQTEGyNAXHm2GS52/go-log"

blocks/blockstore/blockstore_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"fmt"
77
"testing"
88

9-
dshelp "github.com/ipfs/go-ipfs/thirdparty/ds-help"
9+
dshelp "github.com/scroot/go-ipfs/thirdparty/ds-help"
1010
blocks "gx/ipfs/QmXxGS5QsUxpR3iqL5DjmsYPHR1Yz74siRQ4ChJqWFosMh/go-block-format"
1111

1212
ds "gx/ipfs/QmVSase1JP7cq9QkPT46oNwdp9pT6kBkG3oqS14y3QcZjG/go-datastore"

blocks/blockstore/util/remove.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
ds "gx/ipfs/QmVSase1JP7cq9QkPT46oNwdp9pT6kBkG3oqS14y3QcZjG/go-datastore"
99
cid "gx/ipfs/Qma4RJSuh7mMeJQYCqMbKzekn6EwBo7HEs5AQYjVRMQATB/go-cid"
1010

11-
bs "github.com/ipfs/go-ipfs/blocks/blockstore"
12-
"github.com/ipfs/go-ipfs/pin"
11+
bs "github.com/scroot/go-ipfs/blocks/blockstore"
12+
"github.com/scroot/go-ipfs/pin"
1313
)
1414

1515
// RemovedBlock is used to respresent the result of removing a block.

blocks/bloom/filter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"gx/ipfs/QmeWQMDa5dSdP4n8WDeoY5z8L2EKVqF4ZvK4VEHsLqXsGu/hamming"
99
"hash"
1010

11-
"github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/mtchavez/jenkins"
11+
"github.com/scroot/go-ipfs/Godeps/_workspace/src/github.com/mtchavez/jenkins"
1212
)
1313

1414
// A Filter represents a bloom filter.

blocks/set/set.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package set
66
import (
77
cid "gx/ipfs/Qma4RJSuh7mMeJQYCqMbKzekn6EwBo7HEs5AQYjVRMQATB/go-cid"
88

9-
"github.com/ipfs/go-ipfs/blocks/bloom"
9+
"github.com/scroot/go-ipfs/blocks/bloom"
1010
)
1111

1212
// BlockSet represents a mutable set of blocks CIDs.

blocks/set/set_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package set
33
import (
44
"testing"
55

6-
bu "github.com/ipfs/go-ipfs/blocks/blocksutil"
6+
bu "github.com/scroot/go-ipfs/blocks/blocksutil"
77

88
cid "gx/ipfs/Qma4RJSuh7mMeJQYCqMbKzekn6EwBo7HEs5AQYjVRMQATB/go-cid"
99
)

blockservice/blockservice.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"errors"
99
"fmt"
1010

11-
"github.com/ipfs/go-ipfs/blocks/blockstore"
12-
exchange "github.com/ipfs/go-ipfs/exchange"
13-
bitswap "github.com/ipfs/go-ipfs/exchange/bitswap"
11+
"github.com/scroot/go-ipfs/blocks/blockstore"
12+
exchange "github.com/scroot/go-ipfs/exchange"
13+
bitswap "github.com/scroot/go-ipfs/exchange/bitswap"
1414

1515
logging "gx/ipfs/QmSpJByNKFX1sCsHBEp3R73FL4NF6FnQTEGyNAXHm2GS52/go-log"
1616
blocks "gx/ipfs/QmXxGS5QsUxpR3iqL5DjmsYPHR1Yz74siRQ4ChJqWFosMh/go-block-format"

blockservice/blockservice_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package blockservice
33
import (
44
"testing"
55

6-
"github.com/ipfs/go-ipfs/blocks/blockstore"
7-
butil "github.com/ipfs/go-ipfs/blocks/blocksutil"
8-
offline "github.com/ipfs/go-ipfs/exchange/offline"
6+
"github.com/scroot/go-ipfs/blocks/blockstore"
7+
butil "github.com/scroot/go-ipfs/blocks/blocksutil"
8+
offline "github.com/scroot/go-ipfs/exchange/offline"
99
"gx/ipfs/QmXxGS5QsUxpR3iqL5DjmsYPHR1Yz74siRQ4ChJqWFosMh/go-block-format"
1010

1111
ds "gx/ipfs/QmVSase1JP7cq9QkPT46oNwdp9pT6kBkG3oqS14y3QcZjG/go-datastore"

blockservice/test/blocks_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"testing"
88
"time"
99

10-
blockstore "github.com/ipfs/go-ipfs/blocks/blockstore"
11-
. "github.com/ipfs/go-ipfs/blockservice"
12-
offline "github.com/ipfs/go-ipfs/exchange/offline"
10+
blockstore "github.com/scroot/go-ipfs/blocks/blockstore"
11+
. "github.com/scroot/go-ipfs/blockservice"
12+
offline "github.com/scroot/go-ipfs/exchange/offline"
1313
blocks "gx/ipfs/QmXxGS5QsUxpR3iqL5DjmsYPHR1Yz74siRQ4ChJqWFosMh/go-block-format"
1414

1515
ds "gx/ipfs/QmVSase1JP7cq9QkPT46oNwdp9pT6kBkG3oqS14y3QcZjG/go-datastore"

blockservice/test/mock.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package bstest
22

33
import (
4-
. "github.com/ipfs/go-ipfs/blockservice"
5-
bitswap "github.com/ipfs/go-ipfs/exchange/bitswap"
6-
tn "github.com/ipfs/go-ipfs/exchange/bitswap/testnet"
7-
mockrouting "github.com/ipfs/go-ipfs/routing/mock"
8-
delay "github.com/ipfs/go-ipfs/thirdparty/delay"
4+
. "github.com/scroot/go-ipfs/blockservice"
5+
bitswap "github.com/scroot/go-ipfs/exchange/bitswap"
6+
tn "github.com/scroot/go-ipfs/exchange/bitswap/testnet"
7+
mockrouting "github.com/scroot/go-ipfs/routing/mock"
8+
delay "github.com/scroot/go-ipfs/thirdparty/delay"
99
)
1010

1111
// Mocks returns |n| connected mock Blockservices

cmd/ipfswatch/ipfswatch_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"testing"
55

6-
"github.com/ipfs/go-ipfs/thirdparty/assert"
6+
"github.com/scroot/go-ipfs/thirdparty/assert"
77
)
88

99
func TestIsHidden(t *testing.T) {

cmd/ipfswatch/main.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ import (
99
"path/filepath"
1010
"syscall"
1111

12-
commands "github.com/ipfs/go-ipfs/commands"
13-
core "github.com/ipfs/go-ipfs/core"
14-
corehttp "github.com/ipfs/go-ipfs/core/corehttp"
15-
coreunix "github.com/ipfs/go-ipfs/core/coreunix"
16-
config "github.com/ipfs/go-ipfs/repo/config"
17-
fsrepo "github.com/ipfs/go-ipfs/repo/fsrepo"
18-
19-
homedir "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/mitchellh/go-homedir"
12+
commands "github.com/scroot/go-ipfs/commands"
13+
core "github.com/scroot/go-ipfs/core"
14+
corehttp "github.com/scroot/go-ipfs/core/corehttp"
15+
coreunix "github.com/scroot/go-ipfs/core/coreunix"
16+
config "github.com/scroot/go-ipfs/repo/config"
17+
fsrepo "github.com/scroot/go-ipfs/repo/fsrepo"
18+
19+
homedir "github.com/scroot/go-ipfs/Godeps/_workspace/src/github.com/mitchellh/go-homedir"
2020

2121
process "gx/ipfs/QmSF8fPo3jgVBAy8fpdjjYqgG87dkJgUprRBHRd2tmfgpP/goprocess"
2222

commands/cli/cmd_suggestion.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"sort"
66
"strings"
77

8-
levenshtein "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/texttheater/golang-levenshtein/levenshtein"
9-
cmds "github.com/ipfs/go-ipfs/commands"
8+
levenshtein "github.com/scroot/go-ipfs/Godeps/_workspace/src/github.com/texttheater/golang-levenshtein/levenshtein"
9+
cmds "github.com/scroot/go-ipfs/commands"
1010
)
1111

1212
// Make a custom slice that can be sorted by its levenshtein value

commands/cli/helptext.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"text/template"
99

10-
cmds "github.com/ipfs/go-ipfs/commands"
10+
cmds "github.com/scroot/go-ipfs/commands"
1111
)
1212

1313
const (

commands/cli/helptext_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"strings"
55
"testing"
66

7-
cmds "github.com/ipfs/go-ipfs/commands"
7+
cmds "github.com/scroot/go-ipfs/commands"
88
)
99

1010
func TestSynopsisGenerator(t *testing.T) {

commands/cli/parse.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"sort"
1010
"strings"
1111

12-
cmds "github.com/ipfs/go-ipfs/commands"
13-
files "github.com/ipfs/go-ipfs/commands/files"
12+
cmds "github.com/scroot/go-ipfs/commands"
13+
files "github.com/scroot/go-ipfs/commands/files"
1414

1515
logging "gx/ipfs/QmSpJByNKFX1sCsHBEp3R73FL4NF6FnQTEGyNAXHm2GS52/go-log"
1616
u "gx/ipfs/QmWbjfz3u6HkAdPh34dgPchGbQjob6LXLhAeCGii2TX69n/go-ipfs-util"

commands/cli/parse_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strings"
99
"testing"
1010

11-
"github.com/ipfs/go-ipfs/commands"
11+
"github.com/scroot/go-ipfs/commands"
1212
)
1313

1414
type kvs map[string]interface{}

commands/command.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"io"
1515
"reflect"
1616

17-
"github.com/ipfs/go-ipfs/path"
17+
"github.com/scroot/go-ipfs/path"
1818
logging "gx/ipfs/QmSpJByNKFX1sCsHBEp3R73FL4NF6FnQTEGyNAXHm2GS52/go-log"
1919
)
2020

commands/http/client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"strconv"
1313
"strings"
1414

15-
cmds "github.com/ipfs/go-ipfs/commands"
16-
config "github.com/ipfs/go-ipfs/repo/config"
15+
cmds "github.com/scroot/go-ipfs/commands"
16+
config "github.com/scroot/go-ipfs/repo/config"
1717

1818
context "context"
1919
)

commands/http/handler.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"strings"
1313
"sync"
1414

15-
cmds "github.com/ipfs/go-ipfs/commands"
16-
"github.com/ipfs/go-ipfs/repo/config"
15+
cmds "github.com/scroot/go-ipfs/commands"
16+
"github.com/scroot/go-ipfs/repo/config"
1717

1818
cors "gx/ipfs/QmPG2kW5t27LuHgHnvhUwbHCNHAt2eUcb4gPHqofrESUdB/cors"
1919
logging "gx/ipfs/QmSpJByNKFX1sCsHBEp3R73FL4NF6FnQTEGyNAXHm2GS52/go-log"
@@ -405,7 +405,7 @@ func allowOrigin(r *http.Request, cfg *ServerConfig) bool {
405405
// the API would be vulnerable to. We check that the Referer
406406
// is allowed by CORS Origin (origins and referrers here will
407407
// work similarly in the normla uses of the API).
408-
// See discussion at https://github.com/ipfs/go-ipfs/issues/1532
408+
// See discussion at https://github.com/scroot/go-ipfs/issues/1532
409409
func allowReferer(r *http.Request, cfg *ServerConfig) bool {
410410
referer := r.Referer()
411411

commands/http/handler_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"net/url"
77
"testing"
88

9-
cmds "github.com/ipfs/go-ipfs/commands"
10-
ipfscmd "github.com/ipfs/go-ipfs/core/commands"
11-
coremock "github.com/ipfs/go-ipfs/core/mock"
9+
cmds "github.com/scroot/go-ipfs/commands"
10+
ipfscmd "github.com/scroot/go-ipfs/core/commands"
11+
coremock "github.com/scroot/go-ipfs/core/mock"
1212
)
1313

1414
func assertHeaders(t *testing.T, resHeaders http.Header, reqHeaders map[string]string) {

commands/http/multifilereader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"net/url"
1010
"sync"
1111

12-
files "github.com/ipfs/go-ipfs/commands/files"
12+
files "github.com/scroot/go-ipfs/commands/files"
1313
)
1414

1515
// MultiFileReader reads from a `commands.File` (which can be a directory of files

commands/http/multifilereader_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"testing"
99

10-
files "github.com/ipfs/go-ipfs/commands/files"
10+
files "github.com/scroot/go-ipfs/commands/files"
1111
)
1212

1313
func TestOutput(t *testing.T) {

commands/http/parse.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"net/http"
88
"strings"
99

10-
cmds "github.com/ipfs/go-ipfs/commands"
11-
files "github.com/ipfs/go-ipfs/commands/files"
12-
path "github.com/ipfs/go-ipfs/path"
10+
cmds "github.com/scroot/go-ipfs/commands"
11+
files "github.com/scroot/go-ipfs/commands/files"
12+
path "github.com/scroot/go-ipfs/path"
1313
)
1414

1515
// Parse parses the data in a http.Request and returns a command Request object

0 commit comments

Comments
 (0)