Merge branch 'master' of ssh://github.com/m3o/m3o-go

This commit is contained in:
Asim Aslam
2020-07-28 14:58:24 +01:00
2 changed files with 4 additions and 4 deletions

View File

@@ -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 ```go
package main package main
@@ -9,7 +9,7 @@ import (
"fmt" "fmt"
"os" "os"
"github.com/micro/clients/go/client" "github.com/m3o/m3o-go/client"
) )
type Request struct { type Request struct {

View File

@@ -16,7 +16,7 @@ const (
// local address for api // local address for api
localAddress = "http://localhost:8080/" localAddress = "http://localhost:8080/"
// public address for api // public address for api
liveAddress = "https://api.micro.mu/" liveAddress = "https://api.m3o.com/"
) )
// Options of the Client // Options of the Client