Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
asim committed Oct 25, 2022
1 parent 964263b commit 6f40981
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Micro API Client [![godoc](https://godoc.org/github.com/micro/micro-go?status.svg)](https://godoc.org/github.com/micro/micro-go)
# Micro Go Client [![godoc](https://godoc.org/github.com/micro/micro-go?status.svg)](https://godoc.org/github.com/micro/micro-go)

This is the Go client to access services on the Micro Platform

Expand All @@ -11,7 +11,7 @@ import (
"fmt"
"os"

"github.com/micro/micro/v3/client/api"
"github.com/micro/micro-go"
)

type Request struct {
Expand All @@ -27,7 +27,7 @@ var (
)

func main() {
c := api.NewClient(nil)
c := micro.NewClient(nil)

// set your api token
c.SetToken(token)
Expand Down Expand Up @@ -57,7 +57,7 @@ package main
import (
"fmt"

"github.com/micro/micro/v3/client/api"
"github.com/micro/micro-go"
)

type Request struct {
Expand All @@ -73,7 +73,7 @@ var (
)

func main() {
c := api.NewClient(nil)
c := micro.NewClient(nil)

// set your api token
c.SetToken(token)
Expand Down

0 comments on commit 6f40981

Please sign in to comment.