fix the coreapi/object import grouping
(while we're at it) License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
Steven Allen committed
Jan 30, 2018 at 14:22 UTC
9c67eb4cf08e3e98e16c08a31f8d8f3908fff10d
1 file changed
+7
-8
core/coreapi/object.go
+7
-8
@@ -3,21 +3,20 @@ package coreapi
3
import (
4
"bytes"
5
"context"
6
+ "encoding/base64"
7
+ "encoding/json"
8
+ "encoding/xml"
9
+ "errors"
10
+ "fmt"
11
"io"
12
"io/ioutil"
13
9
- caopts "github.com/ipfs/go-ipfs/core/coreapi/interface/options"
10
- dagutils "github.com/ipfs/go-ipfs/merkledag/utils"
11
-
14
coreiface "github.com/ipfs/go-ipfs/core/coreapi/interface"
15
+ caopts "github.com/ipfs/go-ipfs/core/coreapi/interface/options"
16
dag "github.com/ipfs/go-ipfs/merkledag"
17
+ dagutils "github.com/ipfs/go-ipfs/merkledag/utils"
18
ft "github.com/ipfs/go-ipfs/unixfs"
19
16
- "encoding/base64"
17
- "encoding/json"
18
- "encoding/xml"
19
- "errors"
20
- "fmt"
20
cid "gx/ipfs/QmcZfnkapfECQGcLZaf9B79NRg7cRa9EnZh4LSbkCzwNvY/go-cid"
21
ipld "gx/ipfs/Qme5bWv7wtjUNGsK2BNGVUFPKiuxWrsqrtvYwCLRw8YFES/go-ipld-format"
22
)