list

package
v0.0.0-...-a1eeba1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 6, 2024 License: GPL-3.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ListService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "listpb.ListService",
	HandlerType: (*ListServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "CreateList",
			Handler:    _ListService_CreateList_Handler,
		},
		{
			MethodName: "GetListByID",
			Handler:    _ListService_GetListByID_Handler,
		},
		{
			MethodName: "GetListsByBoard",
			Handler:    _ListService_GetListsByBoard_Handler,
		},
		{
			MethodName: "UpdateListName",
			Handler:    _ListService_UpdateListName_Handler,
		},
		{
			MethodName: "MoveListPosition",
			Handler:    _ListService_MoveListPosition_Handler,
		},
		{
			MethodName: "ArchiveList",
			Handler:    _ListService_ArchiveList_Handler,
		},
		{
			MethodName: "RestoreList",
			Handler:    _ListService_RestoreList_Handler,
		},
		{
			MethodName: "DeleteList",
			Handler:    _ListService_DeleteList_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "list.proto",
}

ListService_ServiceDesc is the grpc.ServiceDesc for ListService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

Functions

func RegisterListServiceServer

func RegisterListServiceServer(s grpc.ServiceRegistrar, srv ListServiceServer)

Types

type ArchiveListRequest

type ArchiveListRequest struct {
	ListID uint64 `protobuf:"varint,1,opt,name=listID,proto3" json:"listID,omitempty"`
	// contains filtered or unexported fields
}

func (*ArchiveListRequest) Descriptor deprecated

func (*ArchiveListRequest) Descriptor() ([]byte, []int)

Deprecated: Use ArchiveListRequest.ProtoReflect.Descriptor instead.

func (*ArchiveListRequest) GetListID

func (x *ArchiveListRequest) GetListID() uint64

func (*ArchiveListRequest) ProtoMessage

func (*ArchiveListRequest) ProtoMessage()

func (*ArchiveListRequest) ProtoReflect

func (x *ArchiveListRequest) ProtoReflect() protoreflect.Message

func (*ArchiveListRequest) Reset

func (x *ArchiveListRequest) Reset()

func (*ArchiveListRequest) String

func (x *ArchiveListRequest) String() string

type ArchiveListResponse

type ArchiveListResponse struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*ArchiveListResponse) Descriptor deprecated

func (*ArchiveListResponse) Descriptor() ([]byte, []int)

Deprecated: Use ArchiveListResponse.ProtoReflect.Descriptor instead.

func (*ArchiveListResponse) GetMessage

func (x *ArchiveListResponse) GetMessage() string

func (*ArchiveListResponse) ProtoMessage

func (*ArchiveListResponse) ProtoMessage()

func (*ArchiveListResponse) ProtoReflect

func (x *ArchiveListResponse) ProtoReflect() protoreflect.Message

func (*ArchiveListResponse) Reset

func (x *ArchiveListResponse) Reset()

func (*ArchiveListResponse) String

func (x *ArchiveListResponse) String() string

type CreateListRequest

type CreateListRequest struct {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateListRequest) Descriptor deprecated

func (*CreateListRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateListRequest.ProtoReflect.Descriptor instead.

func (*CreateListRequest) GetName

func (x *CreateListRequest) GetName() string

func (*CreateListRequest) ProtoMessage

func (*CreateListRequest) ProtoMessage()

func (*CreateListRequest) ProtoReflect

func (x *CreateListRequest) ProtoReflect() protoreflect.Message

func (*CreateListRequest) Reset

func (x *CreateListRequest) Reset()

func (*CreateListRequest) String

func (x *CreateListRequest) String() string

type CreateListResponse

type CreateListResponse struct {
	List *List `protobuf:"bytes,1,opt,name=list,proto3" json:"list,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateListResponse) Descriptor deprecated

func (*CreateListResponse) Descriptor() ([]byte, []int)

Deprecated: Use CreateListResponse.ProtoReflect.Descriptor instead.

func (*CreateListResponse) GetList

func (x *CreateListResponse) GetList() *List

func (*CreateListResponse) ProtoMessage

func (*CreateListResponse) ProtoMessage()

func (*CreateListResponse) ProtoReflect

func (x *CreateListResponse) ProtoReflect() protoreflect.Message

func (*CreateListResponse) Reset

func (x *CreateListResponse) Reset()

func (*CreateListResponse) String

func (x *CreateListResponse) String() string

type DeleteListRequest

type DeleteListRequest struct {
	ListID uint64 `protobuf:"varint,1,opt,name=listID,proto3" json:"listID,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteListRequest) Descriptor deprecated

func (*DeleteListRequest) Descriptor() ([]byte, []int)

Deprecated: Use DeleteListRequest.ProtoReflect.Descriptor instead.

func (*DeleteListRequest) GetListID

func (x *DeleteListRequest) GetListID() uint64

func (*DeleteListRequest) ProtoMessage

func (*DeleteListRequest) ProtoMessage()

func (*DeleteListRequest) ProtoReflect

func (x *DeleteListRequest) ProtoReflect() protoreflect.Message

func (*DeleteListRequest) Reset

func (x *DeleteListRequest) Reset()

func (*DeleteListRequest) String

func (x *DeleteListRequest) String() string

type DeleteListResponse

type DeleteListResponse struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteListResponse) Descriptor deprecated

func (*DeleteListResponse) Descriptor() ([]byte, []int)

Deprecated: Use DeleteListResponse.ProtoReflect.Descriptor instead.

func (*DeleteListResponse) GetMessage

func (x *DeleteListResponse) GetMessage() string

func (*DeleteListResponse) ProtoMessage

func (*DeleteListResponse) ProtoMessage()

func (*DeleteListResponse) ProtoReflect

func (x *DeleteListResponse) ProtoReflect() protoreflect.Message

func (*DeleteListResponse) Reset

func (x *DeleteListResponse) Reset()

func (*DeleteListResponse) String

func (x *DeleteListResponse) String() string

type GetListByIDRequest

type GetListByIDRequest struct {
	ListID uint64 `protobuf:"varint,1,opt,name=listID,proto3" json:"listID,omitempty"`
	// contains filtered or unexported fields
}

func (*GetListByIDRequest) Descriptor deprecated

func (*GetListByIDRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetListByIDRequest.ProtoReflect.Descriptor instead.

func (*GetListByIDRequest) GetListID

func (x *GetListByIDRequest) GetListID() uint64

func (*GetListByIDRequest) ProtoMessage

func (*GetListByIDRequest) ProtoMessage()

func (*GetListByIDRequest) ProtoReflect

func (x *GetListByIDRequest) ProtoReflect() protoreflect.Message

func (*GetListByIDRequest) Reset

func (x *GetListByIDRequest) Reset()

func (*GetListByIDRequest) String

func (x *GetListByIDRequest) String() string

type GetListByIDResponse

type GetListByIDResponse struct {
	Lists []*List `protobuf:"bytes,1,rep,name=lists,proto3" json:"lists,omitempty"`
	// contains filtered or unexported fields
}

func (*GetListByIDResponse) Descriptor deprecated

func (*GetListByIDResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetListByIDResponse.ProtoReflect.Descriptor instead.

func (*GetListByIDResponse) GetLists

func (x *GetListByIDResponse) GetLists() []*List

func (*GetListByIDResponse) ProtoMessage

func (*GetListByIDResponse) ProtoMessage()

func (*GetListByIDResponse) ProtoReflect

func (x *GetListByIDResponse) ProtoReflect() protoreflect.Message

func (*GetListByIDResponse) Reset

func (x *GetListByIDResponse) Reset()

func (*GetListByIDResponse) String

func (x *GetListByIDResponse) String() string

type GetListsByBoardRequest

type GetListsByBoardRequest struct {
	// contains filtered or unexported fields
}

func (*GetListsByBoardRequest) Descriptor deprecated

func (*GetListsByBoardRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetListsByBoardRequest.ProtoReflect.Descriptor instead.

func (*GetListsByBoardRequest) ProtoMessage

func (*GetListsByBoardRequest) ProtoMessage()

func (*GetListsByBoardRequest) ProtoReflect

func (x *GetListsByBoardRequest) ProtoReflect() protoreflect.Message

func (*GetListsByBoardRequest) Reset

func (x *GetListsByBoardRequest) Reset()

func (*GetListsByBoardRequest) String

func (x *GetListsByBoardRequest) String() string

type GetListsByBoardResponse

type GetListsByBoardResponse struct {
	Lists []*List `protobuf:"bytes,2,rep,name=lists,proto3" json:"lists,omitempty"`
	// contains filtered or unexported fields
}

func (*GetListsByBoardResponse) Descriptor deprecated

func (*GetListsByBoardResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetListsByBoardResponse.ProtoReflect.Descriptor instead.

func (*GetListsByBoardResponse) GetLists

func (x *GetListsByBoardResponse) GetLists() []*List

func (*GetListsByBoardResponse) ProtoMessage

func (*GetListsByBoardResponse) ProtoMessage()

func (*GetListsByBoardResponse) ProtoReflect

func (x *GetListsByBoardResponse) ProtoReflect() protoreflect.Message

func (*GetListsByBoardResponse) Reset

func (x *GetListsByBoardResponse) Reset()

func (*GetListsByBoardResponse) String

func (x *GetListsByBoardResponse) String() string

type List

type List struct {
	ListID   uint64 `protobuf:"varint,1,opt,name=listID,proto3" json:"listID,omitempty"`
	BoardID  uint64 `protobuf:"varint,2,opt,name=boardID,proto3" json:"boardID,omitempty"`
	Name     string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Position int64  `protobuf:"varint,4,opt,name=position,proto3" json:"position,omitempty"`
	// contains filtered or unexported fields
}

func (*List) Descriptor deprecated

func (*List) Descriptor() ([]byte, []int)

Deprecated: Use List.ProtoReflect.Descriptor instead.

func (*List) GetBoardID

func (x *List) GetBoardID() uint64

func (*List) GetListID

func (x *List) GetListID() uint64

func (*List) GetName

func (x *List) GetName() string

func (*List) GetPosition

func (x *List) GetPosition() int64

func (*List) ProtoMessage

func (*List) ProtoMessage()

func (*List) ProtoReflect

func (x *List) ProtoReflect() protoreflect.Message

func (*List) Reset

func (x *List) Reset()

func (*List) String

func (x *List) String() string

type ListServiceClient

ListServiceClient is the client API for ListService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type ListServiceServer

ListServiceServer is the server API for ListService service. All implementations must embed UnimplementedListServiceServer for forward compatibility

type MoveListPositionRequest

type MoveListPositionRequest struct {
	ListID   uint64 `protobuf:"varint,1,opt,name=listID,proto3" json:"listID,omitempty"`
	Position int64  `protobuf:"varint,2,opt,name=position,proto3" json:"position,omitempty"`
	// contains filtered or unexported fields
}

func (*MoveListPositionRequest) Descriptor deprecated

func (*MoveListPositionRequest) Descriptor() ([]byte, []int)

Deprecated: Use MoveListPositionRequest.ProtoReflect.Descriptor instead.

func (*MoveListPositionRequest) GetListID

func (x *MoveListPositionRequest) GetListID() uint64

func (*MoveListPositionRequest) GetPosition

func (x *MoveListPositionRequest) GetPosition() int64

func (*MoveListPositionRequest) ProtoMessage

func (*MoveListPositionRequest) ProtoMessage()

func (*MoveListPositionRequest) ProtoReflect

func (x *MoveListPositionRequest) ProtoReflect() protoreflect.Message

func (*MoveListPositionRequest) Reset

func (x *MoveListPositionRequest) Reset()

func (*MoveListPositionRequest) String

func (x *MoveListPositionRequest) String() string

type MoveListPositionResponse

type MoveListPositionResponse struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*MoveListPositionResponse) Descriptor deprecated

func (*MoveListPositionResponse) Descriptor() ([]byte, []int)

Deprecated: Use MoveListPositionResponse.ProtoReflect.Descriptor instead.

func (*MoveListPositionResponse) GetMessage

func (x *MoveListPositionResponse) GetMessage() string

func (*MoveListPositionResponse) ProtoMessage

func (*MoveListPositionResponse) ProtoMessage()

func (*MoveListPositionResponse) ProtoReflect

func (x *MoveListPositionResponse) ProtoReflect() protoreflect.Message

func (*MoveListPositionResponse) Reset

func (x *MoveListPositionResponse) Reset()

func (*MoveListPositionResponse) String

func (x *MoveListPositionResponse) String() string

type RestoreListRequest

type RestoreListRequest struct {
	ListID uint64 `protobuf:"varint,1,opt,name=listID,proto3" json:"listID,omitempty"`
	// contains filtered or unexported fields
}

func (*RestoreListRequest) Descriptor deprecated

func (*RestoreListRequest) Descriptor() ([]byte, []int)

Deprecated: Use RestoreListRequest.ProtoReflect.Descriptor instead.

func (*RestoreListRequest) GetListID

func (x *RestoreListRequest) GetListID() uint64

func (*RestoreListRequest) ProtoMessage

func (*RestoreListRequest) ProtoMessage()

func (*RestoreListRequest) ProtoReflect

func (x *RestoreListRequest) ProtoReflect() protoreflect.Message

func (*RestoreListRequest) Reset

func (x *RestoreListRequest) Reset()

func (*RestoreListRequest) String

func (x *RestoreListRequest) String() string

type RestoreListResponse

type RestoreListResponse struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*RestoreListResponse) Descriptor deprecated

func (*RestoreListResponse) Descriptor() ([]byte, []int)

Deprecated: Use RestoreListResponse.ProtoReflect.Descriptor instead.

func (*RestoreListResponse) GetMessage

func (x *RestoreListResponse) GetMessage() string

func (*RestoreListResponse) ProtoMessage

func (*RestoreListResponse) ProtoMessage()

func (*RestoreListResponse) ProtoReflect

func (x *RestoreListResponse) ProtoReflect() protoreflect.Message

func (*RestoreListResponse) Reset

func (x *RestoreListResponse) Reset()

func (*RestoreListResponse) String

func (x *RestoreListResponse) String() string

type UnimplementedListServiceServer

type UnimplementedListServiceServer struct {
}

UnimplementedListServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedListServiceServer) ArchiveList

func (UnimplementedListServiceServer) CreateList

func (UnimplementedListServiceServer) DeleteList

func (UnimplementedListServiceServer) GetListByID

func (UnimplementedListServiceServer) GetListsByBoard

func (UnimplementedListServiceServer) MoveListPosition

func (UnimplementedListServiceServer) RestoreList

func (UnimplementedListServiceServer) UpdateListName

type UnsafeListServiceServer

type UnsafeListServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeListServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to ListServiceServer will result in compilation errors.

type UpdateListNameRequest

type UpdateListNameRequest struct {
	ListID uint64 `protobuf:"varint,1,opt,name=listID,proto3" json:"listID,omitempty"`
	Name   string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateListNameRequest) Descriptor deprecated

func (*UpdateListNameRequest) Descriptor() ([]byte, []int)

Deprecated: Use UpdateListNameRequest.ProtoReflect.Descriptor instead.

func (*UpdateListNameRequest) GetListID

func (x *UpdateListNameRequest) GetListID() uint64

func (*UpdateListNameRequest) GetName

func (x *UpdateListNameRequest) GetName() string

func (*UpdateListNameRequest) ProtoMessage

func (*UpdateListNameRequest) ProtoMessage()

func (*UpdateListNameRequest) ProtoReflect

func (x *UpdateListNameRequest) ProtoReflect() protoreflect.Message

func (*UpdateListNameRequest) Reset

func (x *UpdateListNameRequest) Reset()

func (*UpdateListNameRequest) String

func (x *UpdateListNameRequest) String() string

type UpdateListNameResponse

type UpdateListNameResponse struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateListNameResponse) Descriptor deprecated

func (*UpdateListNameResponse) Descriptor() ([]byte, []int)

Deprecated: Use UpdateListNameResponse.ProtoReflect.Descriptor instead.

func (*UpdateListNameResponse) GetMessage

func (x *UpdateListNameResponse) GetMessage() string

func (*UpdateListNameResponse) ProtoMessage

func (*UpdateListNameResponse) ProtoMessage()

func (*UpdateListNameResponse) ProtoReflect

func (x *UpdateListNameResponse) ProtoReflect() protoreflect.Message

func (*UpdateListNameResponse) Reset

func (x *UpdateListNameResponse) Reset()

func (*UpdateListNameResponse) String

func (x *UpdateListNameResponse) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL