Skip to content

Commit

Permalink
Merge pull request #6511 from ipfs/extract/filestore
Browse files Browse the repository at this point in the history
Extract Filestore
  • Loading branch information
Stebalien authored Jul 15, 2019
2 parents 5537308 + 02f7bc8 commit 333c9d1
Show file tree
Hide file tree
Showing 18 changed files with 16 additions and 1,473 deletions.
4 changes: 0 additions & 4 deletions Rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@ endif
dir := pin/internal/pb
include $(dir)/Rules.mk

dir := filestore/pb
include $(dir)/Rules.mk


# -------------------- #
# universal rules #
# -------------------- #
Expand Down
2 changes: 1 addition & 1 deletion core/commands/filestore.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"io"
"os"

filestore "github.com/ipfs/go-filestore"
core "github.com/ipfs/go-ipfs/core"
cmdenv "github.com/ipfs/go-ipfs/core/commands/cmdenv"
e "github.com/ipfs/go-ipfs/core/commands/e"
filestore "github.com/ipfs/go-ipfs/filestore"

"github.com/ipfs/go-cid"
"github.com/ipfs/go-ipfs-cmds"
Expand Down
2 changes: 1 addition & 1 deletion core/commands/urlstore.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"io"
"net/url"

filestore "github.com/ipfs/go-filestore"
cmdenv "github.com/ipfs/go-ipfs/core/commands/cmdenv"
filestore "github.com/ipfs/go-ipfs/filestore"

cmds "github.com/ipfs/go-ipfs-cmds"
files "github.com/ipfs/go-ipfs-files"
Expand Down
2 changes: 1 addition & 1 deletion core/core.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ import (
"context"
"io"

"github.com/ipfs/go-filestore"
version "github.com/ipfs/go-ipfs"
"github.com/ipfs/go-ipfs/core/bootstrap"
"github.com/ipfs/go-ipfs/core/node"
"github.com/ipfs/go-ipfs/core/node/libp2p"
"github.com/ipfs/go-ipfs/filestore"
"github.com/ipfs/go-ipfs/fuse/mount"
"github.com/ipfs/go-ipfs/namesys"
ipnsrp "github.com/ipfs/go-ipfs/namesys/republisher"
Expand Down
2 changes: 1 addition & 1 deletion core/coreapi/test/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import (
"path/filepath"
"testing"

"github.com/ipfs/go-filestore"
"github.com/ipfs/go-ipfs/core"
"github.com/ipfs/go-ipfs/core/bootstrap"
"github.com/ipfs/go-ipfs/core/coreapi"
mock "github.com/ipfs/go-ipfs/core/mock"
"github.com/ipfs/go-ipfs/filestore"
"github.com/ipfs/go-ipfs/keystore"
"github.com/ipfs/go-ipfs/repo"

Expand Down
2 changes: 1 addition & 1 deletion core/node/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
config "github.com/ipfs/go-ipfs-config"
"go.uber.org/fx"

"github.com/ipfs/go-filestore"
"github.com/ipfs/go-ipfs/core/node/helpers"
"github.com/ipfs/go-ipfs/filestore"
"github.com/ipfs/go-ipfs/repo"
"github.com/ipfs/go-ipfs/thirdparty/cidv0v1"
"github.com/ipfs/go-ipfs/thirdparty/verifbs"
Expand Down
251 changes: 0 additions & 251 deletions filestore/filestore.go

This file was deleted.

Loading

0 comments on commit 333c9d1

Please sign in to comment.