Versions in this module Expand all Collapse all v0 v0.1.0 Feb 24, 2018 Changes in this version + func RegisterWebhookServer(s *grpc.Server, srv WebhookServer) + type WebhookClient interface + Register func(ctx context.Context, in *WebhookRequest, opts ...grpc.CallOption) (*WebhookResponse, error) + Remove func(ctx context.Context, in *WebhookRequest, opts ...grpc.CallOption) (*WebhookResponse, error) + func NewWebhookClient(cc *grpc.ClientConn) WebhookClient + type WebhookRequest struct + PayloadURL string + func (*WebhookRequest) Descriptor() ([]byte, []int) + func (*WebhookRequest) ProtoMessage() + func (m *WebhookRequest) GetPayloadURL() string + func (m *WebhookRequest) Reset() + func (m *WebhookRequest) String() string + type WebhookResponse struct + Message string + func (*WebhookResponse) Descriptor() ([]byte, []int) + func (*WebhookResponse) ProtoMessage() + func (m *WebhookResponse) GetMessage() string + func (m *WebhookResponse) Reset() + func (m *WebhookResponse) String() string + type WebhookServer interface + Register func(context.Context, *WebhookRequest) (*WebhookResponse, error) + Remove func(context.Context, *WebhookRequest) (*WebhookResponse, error)