diff --git a/README.md b/README.md index 74c72d3..d05db33 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Go Micro Client +# 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 @@ -9,7 +9,7 @@ import ( "fmt" "os" - "github.com/micro/clients/go/client" + "github.com/m3o/m3o-go/client" ) type Request struct { 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