forked from asbubam/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
39 lines (28 loc) · 726 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package main
import (
"context"
"fmt"
proto "github.com/micro/examples/service/proto"
"github.com/micro/go-micro"
"github.com/micro/go-micro/metadata"
)
type Greeter struct{}
func (g *Greeter) Hello(ctx context.Context, req *proto.HelloRequest, rsp *proto.HelloResponse) error {
md, _ := metadata.FromContext(ctx)
// local ip of service
fmt.Println("local ip is", md["Local"])
// remote ip of caller
fmt.Println("remote ip is", md["Remote"])
rsp.Greeting = "Hello " + req.Name
return nil
}
func main() {
service := micro.NewService(
micro.Name("greeter"),
)
service.Init()
proto.RegisterGreeterHandler(service.Server(), new(Greeter))
if err := service.Run(); err != nil {
fmt.Println(err)
}
}