Versions in this module Expand all Collapse all v1 v1.3.0 Jan 6, 2017 v1.2.0 Dec 27, 2016 Changes in this version + func RegisterSprintServiceServer(s *grpc.Server, srv SprintServiceServer) + type AddSprintRequest struct + Name string + func (*AddSprintRequest) Descriptor() ([]byte, []int) + func (*AddSprintRequest) ProtoMessage() + func (m *AddSprintRequest) GetName() string + func (m *AddSprintRequest) Reset() + func (m *AddSprintRequest) String() string + type AddSprintResponse struct + ErrMsg string + Sprint *Sprint + func (*AddSprintResponse) Descriptor() ([]byte, []int) + func (*AddSprintResponse) ProtoMessage() + func (m *AddSprintResponse) GetErrMsg() string + func (m *AddSprintResponse) GetSprint() *Sprint + func (m *AddSprintResponse) Reset() + func (m *AddSprintResponse) String() string + type CloseSprintRequest struct + Id string + func (*CloseSprintRequest) Descriptor() ([]byte, []int) + func (*CloseSprintRequest) ProtoMessage() + func (m *CloseSprintRequest) GetId() string + func (m *CloseSprintRequest) Reset() + func (m *CloseSprintRequest) String() string + type CloseSprintResponse struct + ErrMsg string + func (*CloseSprintResponse) Descriptor() ([]byte, []int) + func (*CloseSprintResponse) ProtoMessage() + func (m *CloseSprintResponse) GetErrMsg() string + func (m *CloseSprintResponse) Reset() + func (m *CloseSprintResponse) String() string + type GetSprintRequest struct + Id string + func (*GetSprintRequest) Descriptor() ([]byte, []int) + func (*GetSprintRequest) ProtoMessage() + func (m *GetSprintRequest) GetId() string + func (m *GetSprintRequest) Reset() + func (m *GetSprintRequest) String() string + type GetSprintResponse struct + ErrMsg string + Sprint *Sprint + func (*GetSprintResponse) Descriptor() ([]byte, []int) + func (*GetSprintResponse) ProtoMessage() + func (m *GetSprintResponse) GetErrMsg() string + func (m *GetSprintResponse) GetSprint() *Sprint + func (m *GetSprintResponse) Reset() + func (m *GetSprintResponse) String() string + type Sprint struct + CreatedAt uint32 + Id string + Name string + func (*Sprint) Descriptor() ([]byte, []int) + func (*Sprint) ProtoMessage() + func (m *Sprint) GetCreatedAt() uint32 + func (m *Sprint) GetId() string + func (m *Sprint) GetName() string + func (m *Sprint) Reset() + func (m *Sprint) String() string + type SprintServiceClient interface + AddSprint func(ctx context.Context, in *AddSprintRequest, opts ...grpc.CallOption) (*AddSprintResponse, error) + CloseSprint func(ctx context.Context, in *CloseSprintRequest, opts ...grpc.CallOption) (*CloseSprintResponse, error) + GetSprint func(ctx context.Context, in *GetSprintRequest, opts ...grpc.CallOption) (*GetSprintResponse, error) + func NewSprintServiceClient(cc *grpc.ClientConn) SprintServiceClient + type SprintServiceServer interface + AddSprint func(context.Context, *AddSprintRequest) (*AddSprintResponse, error) + CloseSprint func(context.Context, *CloseSprintRequest) (*CloseSprintResponse, error) + GetSprint func(context.Context, *GetSprintRequest) (*GetSprintResponse, error)