mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-12 08:23:58 +02:00
43 lines
845 B
Go
43 lines
845 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"time"
|
|
|
|
"context"
|
|
hello "github.com/asim/go-micro/examples/v3/greeter/srv/proto/hello"
|
|
"github.com/asim/go-micro/v3"
|
|
"github.com/asim/go-micro/v3/transport"
|
|
)
|
|
|
|
type Say struct{}
|
|
|
|
func (s *Say) Hello(ctx context.Context, req *hello.Request, rsp *hello.Response) error {
|
|
rsp.Msg = "Hello " + req.Name
|
|
return nil
|
|
}
|
|
|
|
func main() {
|
|
service := micro.NewService(
|
|
micro.Name("go.micro.srv.greeter"),
|
|
micro.RegisterTTL(time.Second*30),
|
|
micro.RegisterInterval(time.Second*10),
|
|
// setup a new transport with secure option
|
|
micro.Transport(
|
|
// create new transport
|
|
transport.NewHTTPTransport(
|
|
// set to automatically secure
|
|
transport.Secure(true),
|
|
),
|
|
),
|
|
)
|
|
|
|
service.Init()
|
|
|
|
hello.RegisterSayHandler(service.Server(), new(Say))
|
|
|
|
if err := service.Run(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|