forked from asbubam/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
44 lines (38 loc) · 816 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
40
41
42
43
44
package main
import (
"context"
"fmt"
"github.com/micro/cli"
proto "github.com/micro/examples/helloworld/proto"
"github.com/micro/examples/mocking/mock"
"github.com/micro/go-micro"
)
func main() {
var c proto.GreeterService
service := micro.NewService(
micro.Flags(cli.StringFlag{
Name: "environment",
Value: "testing",
}),
)
service.Init(
micro.Action(func(ctx *cli.Context) {
env := ctx.String("environment")
// use the mock when in testing environment
if env == "testing" {
c = mock.NewGreeterService()
} else {
c = proto.NewGreeterService("helloworld", service.Client())
}
}),
)
// call hello service
rsp, err := c.Hello(context.TODO(), &proto.HelloRequest{
Name: "John",
})
if err != nil {
fmt.Println(err)
return
}
fmt.Println(rsp.Greeting)
}