optimize import order
Gowtham G committed
May 2, 2020 at 14:19 UTC
e93f2002f592e018e97eecb30d6a12f48908af23
1 file changed
+1
-1
core/corehttp/gateway_handler.go
+1
-1
@@ -3,7 +3,6 @@ package corehttp
3
import (
4
"context"
5
"fmt"
6
- "github.com/gabriel-vasile/mimetype"
6
"io"
7
"mime"
8
"net/http"
@@ -16,6 +15,7 @@ import (
15
"time"
16
17
humanize "github.com/dustin/go-humanize"
18
+ "github.com/gabriel-vasile/mimetype"
19
"github.com/ipfs/go-cid"
20
files "github.com/ipfs/go-ipfs-files"
21
dag "github.com/ipfs/go-merkledag"