From e75b99f89c5ccfda3b692ce35356947982889914 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Sun, 19 Jan 2020 13:32:24 +0000 Subject: [PATCH] go fmt --- config/cmd/cmd.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/cmd/cmd.go b/config/cmd/cmd.go index 1914fe59..dfea3e59 100644 --- a/config/cmd/cmd.go +++ b/config/cmd/cmd.go @@ -9,14 +9,14 @@ import ( "github.com/micro/cli" "github.com/micro/go-micro/broker" + "github.com/micro/go-micro/client" "github.com/micro/go-micro/client/selector" "github.com/micro/go-micro/registry" - "github.com/micro/go-micro/client" + "github.com/micro/go-micro/runtime" "github.com/micro/go-micro/server" "github.com/micro/go-micro/store" - "github.com/micro/go-micro/util/log" - "github.com/micro/go-micro/runtime" "github.com/micro/go-micro/transport" + "github.com/micro/go-micro/util/log" // clients cgrpc "github.com/micro/go-micro/client/grpc" @@ -235,9 +235,9 @@ var ( } DefaultSelectors = map[string]func(...selector.Option) selector.Selector{ - "dns": dns.NewSelector, - "router": router.NewSelector, - "static": static.NewSelector, + "dns": dns.NewSelector, + "router": router.NewSelector, + "static": static.NewSelector, } DefaultServers = map[string]func(...server.Option) server.Server{