strip doc.go files

This commit is contained in:
Asim Aslam
2016-12-14 15:41:48 +00:00
parent 4a1e5b34ee
commit 71d717a06d
20 changed files with 10 additions and 90 deletions

View File

@@ -1,3 +1,4 @@
// Package client is an interface for an RPC client
package client
import (

View File

@@ -1,23 +0,0 @@
/*
Package client is an interface for making requests.
It provides a method to make synchronous, asynchronous and streaming requests to services.
By default json and protobuf codecs are supported.
import "github.com/micro/go-micro/client"
c := client.NewClient()
req := c.NewRequest("go.micro.srv.greeter", "Greeter.Hello", &greeter.Request{
Name: "John",
})
rsp := &greeter.Response{}
if err := c.Call(context.Background(), req, rsp); err != nil {
return err
}
fmt.Println(rsp.Msg)
*/
package client