From 9aaea6e016409d71cc4cfd013e7dd731514cc053 Mon Sep 17 00:00:00 2001 From: Arijit Das Date: Fri, 18 Jun 2021 17:13:46 +0530 Subject: [PATCH] Address comments. --- cmd/serve.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cmd/serve.go b/cmd/serve.go index 8c8881f8..aa21f55f 100644 --- a/cmd/serve.go +++ b/cmd/serve.go @@ -17,7 +17,6 @@ package cmd import ( "errors" - "github.com/vulcanize/gap-filler/pkg/mux" "net/http" "net/url" "os" @@ -25,15 +24,14 @@ import ( "strings" "sync" - "github.com/vulcanize/ipld-eth-server/pkg/graphql" - "github.com/ethereum/go-ethereum/rpc" log "github.com/sirupsen/logrus" "github.com/spf13/cobra" "github.com/spf13/viper" + "github.com/vulcanize/gap-filler/pkg/mux" "github.com/vulcanize/ipld-eth-indexer/pkg/eth" - + "github.com/vulcanize/ipld-eth-server/pkg/graphql" srpc "github.com/vulcanize/ipld-eth-server/pkg/rpc" s "github.com/vulcanize/ipld-eth-server/pkg/serve" v "github.com/vulcanize/ipld-eth-server/version"