Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GreetRequest ¶
type GreetRequest struct {
Name string
}
type GreetResponse ¶
type GreetResponse struct {
Value string
}
type GreeterService ¶
type GreeterService interface {
Greet(ctx context.Context, req *GreetRequest) (*GreetResponse, error)
}
type GreeterServiceHandler ¶
type GreeterServiceHandler struct{}
func (GreeterServiceHandler) Greet ¶
func (GreeterServiceHandler) Greet(_ context.Context, req *GreetRequest) (*GreetResponse, error)
Click to show internal directories.
Click to hide internal directories.