mirror of
https://github.com/go-micro/go-micro.git
synced 2024-11-24 08:02:32 +02:00
add comments
This commit is contained in:
parent
9e3f3bbc0e
commit
919bfed0c1
@ -7,7 +7,7 @@ supported.
|
||||
|
||||
c := client.NewClient()
|
||||
|
||||
req := c.NewRequest("go.micro.srv.greeter", &greeter.Request{
|
||||
req := c.NewRequest("go.micro.srv.greeter", "Greeter.Hello", &greeter.Request{
|
||||
Name: "John",
|
||||
})
|
||||
|
||||
|
@ -6,6 +6,25 @@ register with a broker.
|
||||
The server combines the all the packages in go-micro to create a whole unit
|
||||
used for building applications including discovery, client/server communication
|
||||
and pub/sub.
|
||||
|
||||
import "github.com/micro/go-micro/server"
|
||||
|
||||
type Greeter struct {}
|
||||
|
||||
func (g *Greeter) Hello(ctx context.Context, req *greeter.Request, rsp *greeter.Response) error {
|
||||
rsp.Msg = "Hello " + req.Name
|
||||
return nil
|
||||
}
|
||||
|
||||
s := server.NewServer()
|
||||
|
||||
|
||||
s.Handle(
|
||||
s.NewHandler(&Greeter{}),
|
||||
)
|
||||
|
||||
s.Start()
|
||||
|
||||
*/
|
||||
package server
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user