From 5937322521adebeb3701499f35ef34f094c8001d Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Thu, 23 Jul 2020 23:22:44 +0100 Subject: [PATCH 1/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 74c72d3..4351823 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ import ( "fmt" "os" - "github.com/micro/clients/go/client" + "github.com/m3o/m3o-go/client" ) type Request struct { From 6f76dc7c5d023e1aab2b38c7718865e4f555d55e Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Thu, 23 Jul 2020 23:23:04 +0100 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4351823..e0a0398 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Go Micro Client +# M3O Go Client By default the client connects to api.micro.mu/client From 5e62da0ff78d518afe6f65f9b763d379e9b3507f Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Thu, 23 Jul 2020 23:23:29 +0100 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e0a0398..d05db33 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # M3O Go Client -By default the client connects to api.micro.mu/client +By default the client connects to api.m3o.com/client ```go package main From 3d84bdf98cfaf8794433ef7f5bed03e9cce02b63 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Thu, 23 Jul 2020 23:24:06 +0100 Subject: [PATCH 4/4] Update client.go --- client/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client.go b/client/client.go index babf13e..cbfde46 100644 --- a/client/client.go +++ b/client/client.go @@ -16,7 +16,7 @@ const ( // local address for api localAddress = "http://localhost:8080/" // public address for api - liveAddress = "https://api.micro.mu/" + liveAddress = "https://api.m3o.com/" ) // Options of the Client