pb

package
v0.0.0-...-d619c85 Latest Latest
Warning

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

Go to latest
Published: Mar 25, 2024 License: MIT Imports: 16 Imported by: 0

Documentation

Overview

Package pb is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var ContributionsService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "pb.ContributionsService",
	HandlerType: (*ContributionsServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "ReadContributions",
			Handler:    _ContributionsService_ReadContributions_Handler,
		},
		{
			MethodName: "ListContributions",
			Handler:    _ContributionsService_ListContributions_Handler,
		},
		{
			MethodName: "CreateContributions",
			Handler:    _ContributionsService_CreateContributions_Handler,
		},
		{
			MethodName: "UpdateContributions",
			Handler:    _ContributionsService_UpdateContributions_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "proto/egh-api.proto",
}

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

View Source
var ContributorsService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "pb.ContributorsService",
	HandlerType: (*ContributorsServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "ReadContributors",
			Handler:    _ContributorsService_ReadContributors_Handler,
		},
		{
			MethodName: "ListContributors",
			Handler:    _ContributorsService_ListContributors_Handler,
		},
		{
			MethodName: "CreateContributors",
			Handler:    _ContributorsService_CreateContributors_Handler,
		},
		{
			MethodName: "UpdateContributors",
			Handler:    _ContributorsService_UpdateContributors_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "proto/egh-api.proto",
}

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

View Source
var File_proto_egh_api_proto protoreflect.FileDescriptor
View Source
var HealthService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "pb.HealthService",
	HandlerType: (*HealthServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "ReadHealth",
			Handler:    _HealthService_ReadHealth_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "proto/egh-api.proto",
}

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

View Source
var InfoService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "pb.InfoService",
	HandlerType: (*InfoServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "ReadInfo",
			Handler:    _InfoService_ReadInfo_Handler,
		},
		{
			MethodName: "ListInfo",
			Handler:    _InfoService_ListInfo_Handler,
		},
		{
			MethodName: "CreateInfo",
			Handler:    _InfoService_CreateInfo_Handler,
		},
		{
			MethodName: "UpdateInfo",
			Handler:    _InfoService_UpdateInfo_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "proto/egh-api.proto",
}

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

View Source
var ReadMeService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "pb.ReadMeService",
	HandlerType: (*ReadMeServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "ReadReadMe",
			Handler:    _ReadMeService_ReadReadMe_Handler,
		},
		{
			MethodName: "ListReadMe",
			Handler:    _ReadMeService_ListReadMe_Handler,
		},
		{
			MethodName: "CreateReadMe",
			Handler:    _ReadMeService_CreateReadMe_Handler,
		},
		{
			MethodName: "UpdateReadMe",
			Handler:    _ReadMeService_UpdateReadMe_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "proto/egh-api.proto",
}

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

Functions

func RegisterContributionsServiceHandler

func RegisterContributionsServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterContributionsServiceHandler registers the http handlers for service ContributionsService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterContributionsServiceHandlerClient

func RegisterContributionsServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client ContributionsServiceClient) error

RegisterContributionsServiceHandlerClient registers the http handlers for service ContributionsService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "ContributionsServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "ContributionsServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "ContributionsServiceClient" to call the correct interceptors.

func RegisterContributionsServiceHandlerFromEndpoint

func RegisterContributionsServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterContributionsServiceHandlerFromEndpoint is same as RegisterContributionsServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterContributionsServiceHandlerServer

func RegisterContributionsServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server ContributionsServiceServer) error

RegisterContributionsServiceHandlerServer registers the http handlers for service ContributionsService to "mux". UnaryRPC :call ContributionsServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterContributionsServiceHandlerFromEndpoint instead.

func RegisterContributionsServiceServer

func RegisterContributionsServiceServer(s grpc.ServiceRegistrar, srv ContributionsServiceServer)

func RegisterContributorsServiceHandler

func RegisterContributorsServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterContributorsServiceHandler registers the http handlers for service ContributorsService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterContributorsServiceHandlerClient

func RegisterContributorsServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client ContributorsServiceClient) error

RegisterContributorsServiceHandlerClient registers the http handlers for service ContributorsService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "ContributorsServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "ContributorsServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "ContributorsServiceClient" to call the correct interceptors.

func RegisterContributorsServiceHandlerFromEndpoint

func RegisterContributorsServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterContributorsServiceHandlerFromEndpoint is same as RegisterContributorsServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterContributorsServiceHandlerServer

func RegisterContributorsServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server ContributorsServiceServer) error

RegisterContributorsServiceHandlerServer registers the http handlers for service ContributorsService to "mux". UnaryRPC :call ContributorsServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterContributorsServiceHandlerFromEndpoint instead.

func RegisterContributorsServiceServer

func RegisterContributorsServiceServer(s grpc.ServiceRegistrar, srv ContributorsServiceServer)

func RegisterHealthServiceHandler

func RegisterHealthServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterHealthServiceHandler registers the http handlers for service HealthService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterHealthServiceHandlerClient

func RegisterHealthServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client HealthServiceClient) error

RegisterHealthServiceHandlerClient registers the http handlers for service HealthService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "HealthServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "HealthServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "HealthServiceClient" to call the correct interceptors.

func RegisterHealthServiceHandlerFromEndpoint

func RegisterHealthServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterHealthServiceHandlerFromEndpoint is same as RegisterHealthServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterHealthServiceHandlerServer

func RegisterHealthServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server HealthServiceServer) error

RegisterHealthServiceHandlerServer registers the http handlers for service HealthService to "mux". UnaryRPC :call HealthServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterHealthServiceHandlerFromEndpoint instead.

func RegisterHealthServiceServer

func RegisterHealthServiceServer(s grpc.ServiceRegistrar, srv HealthServiceServer)

func RegisterInfoServiceHandler

func RegisterInfoServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterInfoServiceHandler registers the http handlers for service InfoService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterInfoServiceHandlerClient

func RegisterInfoServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client InfoServiceClient) error

RegisterInfoServiceHandlerClient registers the http handlers for service InfoService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "InfoServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "InfoServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "InfoServiceClient" to call the correct interceptors.

func RegisterInfoServiceHandlerFromEndpoint

func RegisterInfoServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterInfoServiceHandlerFromEndpoint is same as RegisterInfoServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterInfoServiceHandlerServer

func RegisterInfoServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server InfoServiceServer) error

RegisterInfoServiceHandlerServer registers the http handlers for service InfoService to "mux". UnaryRPC :call InfoServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterInfoServiceHandlerFromEndpoint instead.

func RegisterInfoServiceServer

func RegisterInfoServiceServer(s grpc.ServiceRegistrar, srv InfoServiceServer)

func RegisterReadMeServiceHandler

func RegisterReadMeServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterReadMeServiceHandler registers the http handlers for service ReadMeService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterReadMeServiceHandlerClient

func RegisterReadMeServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client ReadMeServiceClient) error

RegisterReadMeServiceHandlerClient registers the http handlers for service ReadMeService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "ReadMeServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "ReadMeServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "ReadMeServiceClient" to call the correct interceptors.

func RegisterReadMeServiceHandlerFromEndpoint

func RegisterReadMeServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterReadMeServiceHandlerFromEndpoint is same as RegisterReadMeServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterReadMeServiceHandlerServer

func RegisterReadMeServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server ReadMeServiceServer) error

RegisterReadMeServiceHandlerServer registers the http handlers for service ReadMeService to "mux". UnaryRPC :call ReadMeServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterReadMeServiceHandlerFromEndpoint instead.

func RegisterReadMeServiceServer

func RegisterReadMeServiceServer(s grpc.ServiceRegistrar, srv ReadMeServiceServer)

Types

type Contributions

type Contributions struct {
	Name          *string             `protobuf:"bytes,1,opt,name=name,proto3,oneof" json:"name,omitempty"`
	Url           *string             `protobuf:"bytes,2,opt,name=url,proto3,oneof" json:"url,omitempty"`
	AvatarUrl     *string             `protobuf:"bytes,3,opt,name=avatar_url,json=avatarUrl,proto3,oneof" json:"avatar_url,omitempty"`
	Contributions []*RepoContribution `protobuf:"bytes,4,rep,name=contributions,proto3" json:"contributions,omitempty"`
	// contains filtered or unexported fields
}

CONTRIBUTIONS

func (*Contributions) Descriptor deprecated

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

Deprecated: Use Contributions.ProtoReflect.Descriptor instead.

func (*Contributions) GetAvatarUrl

func (x *Contributions) GetAvatarUrl() string

func (*Contributions) GetContributions

func (x *Contributions) GetContributions() []*RepoContribution

func (*Contributions) GetName

func (x *Contributions) GetName() string

func (*Contributions) GetUrl

func (x *Contributions) GetUrl() string

func (*Contributions) ProtoMessage

func (*Contributions) ProtoMessage()

func (*Contributions) ProtoReflect

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

func (*Contributions) Reset

func (x *Contributions) Reset()

func (*Contributions) String

func (x *Contributions) String() string

type ContributionsServiceClient

type ContributionsServiceClient interface {
	ReadContributions(ctx context.Context, in *ReadContributionsRequest, opts ...grpc.CallOption) (*ReadContributionsResponse, error)
	ListContributions(ctx context.Context, in *ListContributionsRequest, opts ...grpc.CallOption) (*ListContributionsResponse, error)
	CreateContributions(ctx context.Context, in *CreateContributionsRequest, opts ...grpc.CallOption) (*CreateContributionsResponse, error)
	UpdateContributions(ctx context.Context, in *UpdateContributionsRequest, opts ...grpc.CallOption) (*UpdateContributionsResponse, error)
}

ContributionsServiceClient is the client API for ContributionsService 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 ContributionsServiceServer

ContributionsServiceServer is the server API for ContributionsService service. All implementations should embed UnimplementedContributionsServiceServer for forward compatibility

type ContributorsServiceClient

type ContributorsServiceClient interface {
	ReadContributors(ctx context.Context, in *ReadContributorsRequest, opts ...grpc.CallOption) (*ReadContributorsResponse, error)
	ListContributors(ctx context.Context, in *ListContributorsRequest, opts ...grpc.CallOption) (*ListContributorsResponse, error)
	CreateContributors(ctx context.Context, in *CreateContributorsRequest, opts ...grpc.CallOption) (*CreateContributorsResponse, error)
	UpdateContributors(ctx context.Context, in *UpdateContributorsRequest, opts ...grpc.CallOption) (*UpdateContributorsResponse, error)
}

ContributorsServiceClient is the client API for ContributorsService 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 ContributorsServiceServer

ContributorsServiceServer is the server API for ContributorsService service. All implementations should embed UnimplementedContributorsServiceServer for forward compatibility

type CreateContributionsRequest

type CreateContributionsRequest struct {
	Login         string         `protobuf:"bytes,1,opt,name=login,proto3" json:"login,omitempty"`
	Contributions *Contributions `protobuf:"bytes,2,opt,name=contributions,proto3" json:"contributions,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateContributionsRequest) Descriptor deprecated

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

Deprecated: Use CreateContributionsRequest.ProtoReflect.Descriptor instead.

func (*CreateContributionsRequest) GetContributions

func (x *CreateContributionsRequest) GetContributions() *Contributions

func (*CreateContributionsRequest) GetLogin

func (x *CreateContributionsRequest) GetLogin() string

func (*CreateContributionsRequest) ProtoMessage

func (*CreateContributionsRequest) ProtoMessage()

func (*CreateContributionsRequest) ProtoReflect

func (*CreateContributionsRequest) Reset

func (x *CreateContributionsRequest) Reset()

func (*CreateContributionsRequest) String

func (x *CreateContributionsRequest) String() string

type CreateContributionsResponse

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

func (*CreateContributionsResponse) Descriptor deprecated

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

Deprecated: Use CreateContributionsResponse.ProtoReflect.Descriptor instead.

func (*CreateContributionsResponse) ProtoMessage

func (*CreateContributionsResponse) ProtoMessage()

func (*CreateContributionsResponse) ProtoReflect

func (*CreateContributionsResponse) Reset

func (x *CreateContributionsResponse) Reset()

func (*CreateContributionsResponse) String

func (x *CreateContributionsResponse) String() string

type CreateContributorsRequest

type CreateContributorsRequest struct {
	Owner            string            `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	Repo             string            `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo,omitempty"`
	RepoContributors *RepoContributors `protobuf:"bytes,3,opt,name=repoContributors,proto3" json:"repoContributors,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateContributorsRequest) Descriptor deprecated

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

Deprecated: Use CreateContributorsRequest.ProtoReflect.Descriptor instead.

func (*CreateContributorsRequest) GetOwner

func (x *CreateContributorsRequest) GetOwner() string

func (*CreateContributorsRequest) GetRepo

func (x *CreateContributorsRequest) GetRepo() string

func (*CreateContributorsRequest) GetRepoContributors

func (x *CreateContributorsRequest) GetRepoContributors() *RepoContributors

func (*CreateContributorsRequest) ProtoMessage

func (*CreateContributorsRequest) ProtoMessage()

func (*CreateContributorsRequest) ProtoReflect

func (*CreateContributorsRequest) Reset

func (x *CreateContributorsRequest) Reset()

func (*CreateContributorsRequest) String

func (x *CreateContributorsRequest) String() string

type CreateContributorsResponse

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

func (*CreateContributorsResponse) Descriptor deprecated

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

Deprecated: Use CreateContributorsResponse.ProtoReflect.Descriptor instead.

func (*CreateContributorsResponse) ProtoMessage

func (*CreateContributorsResponse) ProtoMessage()

func (*CreateContributorsResponse) ProtoReflect

func (*CreateContributorsResponse) Reset

func (x *CreateContributorsResponse) Reset()

func (*CreateContributorsResponse) String

func (x *CreateContributorsResponse) String() string

type CreateInfoRequest

type CreateInfoRequest struct {
	Owner string            `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	Repo  string            `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo,omitempty"`
	Info  *RepoContribution `protobuf:"bytes,3,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateInfoRequest) Descriptor deprecated

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

Deprecated: Use CreateInfoRequest.ProtoReflect.Descriptor instead.

func (*CreateInfoRequest) GetInfo

func (x *CreateInfoRequest) GetInfo() *RepoContribution

func (*CreateInfoRequest) GetOwner

func (x *CreateInfoRequest) GetOwner() string

func (*CreateInfoRequest) GetRepo

func (x *CreateInfoRequest) GetRepo() string

func (*CreateInfoRequest) ProtoMessage

func (*CreateInfoRequest) ProtoMessage()

func (*CreateInfoRequest) ProtoReflect

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

func (*CreateInfoRequest) Reset

func (x *CreateInfoRequest) Reset()

func (*CreateInfoRequest) String

func (x *CreateInfoRequest) String() string

type CreateInfoResponse

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

func (*CreateInfoResponse) Descriptor deprecated

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

Deprecated: Use CreateInfoResponse.ProtoReflect.Descriptor instead.

func (*CreateInfoResponse) ProtoMessage

func (*CreateInfoResponse) ProtoMessage()

func (*CreateInfoResponse) ProtoReflect

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

func (*CreateInfoResponse) Reset

func (x *CreateInfoResponse) Reset()

func (*CreateInfoResponse) String

func (x *CreateInfoResponse) String() string

type CreateReadMeRequest

type CreateReadMeRequest struct {
	Owner      string      `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	Repo       string      `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo,omitempty"`
	MainBranch string      `protobuf:"bytes,3,opt,name=mainBranch,proto3" json:"mainBranch,omitempty"`
	FileExt    string      `protobuf:"bytes,4,opt,name=fileExt,proto3" json:"fileExt,omitempty"`
	ReadMeHtml *ReadMeHtml `protobuf:"bytes,5,opt,name=readMeHtml,proto3" json:"readMeHtml,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateReadMeRequest) Descriptor deprecated

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

Deprecated: Use CreateReadMeRequest.ProtoReflect.Descriptor instead.

func (*CreateReadMeRequest) GetFileExt

func (x *CreateReadMeRequest) GetFileExt() string

func (*CreateReadMeRequest) GetMainBranch

func (x *CreateReadMeRequest) GetMainBranch() string

func (*CreateReadMeRequest) GetOwner

func (x *CreateReadMeRequest) GetOwner() string

func (*CreateReadMeRequest) GetReadMeHtml

func (x *CreateReadMeRequest) GetReadMeHtml() *ReadMeHtml

func (*CreateReadMeRequest) GetRepo

func (x *CreateReadMeRequest) GetRepo() string

func (*CreateReadMeRequest) ProtoMessage

func (*CreateReadMeRequest) ProtoMessage()

func (*CreateReadMeRequest) ProtoReflect

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

func (*CreateReadMeRequest) Reset

func (x *CreateReadMeRequest) Reset()

func (*CreateReadMeRequest) String

func (x *CreateReadMeRequest) String() string

type CreateReadMeResponse

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

func (*CreateReadMeResponse) Descriptor deprecated

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

Deprecated: Use CreateReadMeResponse.ProtoReflect.Descriptor instead.

func (*CreateReadMeResponse) ProtoMessage

func (*CreateReadMeResponse) ProtoMessage()

func (*CreateReadMeResponse) ProtoReflect

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

func (*CreateReadMeResponse) Reset

func (x *CreateReadMeResponse) Reset()

func (*CreateReadMeResponse) String

func (x *CreateReadMeResponse) String() string

type HealthRequest

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

HEALTH

func (*HealthRequest) Descriptor deprecated

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

Deprecated: Use HealthRequest.ProtoReflect.Descriptor instead.

func (*HealthRequest) ProtoMessage

func (*HealthRequest) ProtoMessage()

func (*HealthRequest) ProtoReflect

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

func (*HealthRequest) Reset

func (x *HealthRequest) Reset()

func (*HealthRequest) String

func (x *HealthRequest) String() string

type HealthResponse

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

func (*HealthResponse) Descriptor deprecated

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

Deprecated: Use HealthResponse.ProtoReflect.Descriptor instead.

func (*HealthResponse) GetMessage

func (x *HealthResponse) GetMessage() string

func (*HealthResponse) ProtoMessage

func (*HealthResponse) ProtoMessage()

func (*HealthResponse) ProtoReflect

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

func (*HealthResponse) Reset

func (x *HealthResponse) Reset()

func (*HealthResponse) String

func (x *HealthResponse) String() string

type HealthServiceClient

type HealthServiceClient interface {
	ReadHealth(ctx context.Context, in *HealthRequest, opts ...grpc.CallOption) (*HealthResponse, error)
}

HealthServiceClient is the client API for HealthService 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 HealthServiceServer

type HealthServiceServer interface {
	ReadHealth(context.Context, *HealthRequest) (*HealthResponse, error)
}

HealthServiceServer is the server API for HealthService service. All implementations should embed UnimplementedHealthServiceServer for forward compatibility

type InfoServiceClient

type InfoServiceClient interface {
	ReadInfo(ctx context.Context, in *ReadInfoRequest, opts ...grpc.CallOption) (*ReadInfoResponse, error)
	ListInfo(ctx context.Context, in *ListInfoRequest, opts ...grpc.CallOption) (*ListInfoResponse, error)
	CreateInfo(ctx context.Context, in *CreateInfoRequest, opts ...grpc.CallOption) (*CreateInfoResponse, error)
	UpdateInfo(ctx context.Context, in *UpdateInfoRequest, opts ...grpc.CallOption) (*UpdateInfoResponse, error)
}

InfoServiceClient is the client API for InfoService 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 InfoServiceServer

InfoServiceServer is the server API for InfoService service. All implementations should embed UnimplementedInfoServiceServer for forward compatibility

type ListContributionsRequest

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

func (*ListContributionsRequest) Descriptor deprecated

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

Deprecated: Use ListContributionsRequest.ProtoReflect.Descriptor instead.

func (*ListContributionsRequest) ProtoMessage

func (*ListContributionsRequest) ProtoMessage()

func (*ListContributionsRequest) ProtoReflect

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

func (*ListContributionsRequest) Reset

func (x *ListContributionsRequest) Reset()

func (*ListContributionsRequest) String

func (x *ListContributionsRequest) String() string

type ListContributionsResponse

type ListContributionsResponse struct {
	Messages []*Contributions `protobuf:"bytes,1,rep,name=messages,proto3" json:"messages,omitempty"`
	// contains filtered or unexported fields
}

func (*ListContributionsResponse) Descriptor deprecated

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

Deprecated: Use ListContributionsResponse.ProtoReflect.Descriptor instead.

func (*ListContributionsResponse) GetMessages

func (x *ListContributionsResponse) GetMessages() []*Contributions

func (*ListContributionsResponse) ProtoMessage

func (*ListContributionsResponse) ProtoMessage()

func (*ListContributionsResponse) ProtoReflect

func (*ListContributionsResponse) Reset

func (x *ListContributionsResponse) Reset()

func (*ListContributionsResponse) String

func (x *ListContributionsResponse) String() string

type ListContributorsRequest

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

func (*ListContributorsRequest) Descriptor deprecated

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

Deprecated: Use ListContributorsRequest.ProtoReflect.Descriptor instead.

func (*ListContributorsRequest) ProtoMessage

func (*ListContributorsRequest) ProtoMessage()

func (*ListContributorsRequest) ProtoReflect

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

func (*ListContributorsRequest) Reset

func (x *ListContributorsRequest) Reset()

func (*ListContributorsRequest) String

func (x *ListContributorsRequest) String() string

type ListContributorsResponse

type ListContributorsResponse struct {
	Messages []*RepoContributors `protobuf:"bytes,1,rep,name=messages,proto3" json:"messages,omitempty"`
	// contains filtered or unexported fields
}

func (*ListContributorsResponse) Descriptor deprecated

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

Deprecated: Use ListContributorsResponse.ProtoReflect.Descriptor instead.

func (*ListContributorsResponse) GetMessages

func (x *ListContributorsResponse) GetMessages() []*RepoContributors

func (*ListContributorsResponse) ProtoMessage

func (*ListContributorsResponse) ProtoMessage()

func (*ListContributorsResponse) ProtoReflect

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

func (*ListContributorsResponse) Reset

func (x *ListContributorsResponse) Reset()

func (*ListContributorsResponse) String

func (x *ListContributorsResponse) String() string

type ListInfoRequest

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

func (*ListInfoRequest) Descriptor deprecated

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

Deprecated: Use ListInfoRequest.ProtoReflect.Descriptor instead.

func (*ListInfoRequest) ProtoMessage

func (*ListInfoRequest) ProtoMessage()

func (*ListInfoRequest) ProtoReflect

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

func (*ListInfoRequest) Reset

func (x *ListInfoRequest) Reset()

func (*ListInfoRequest) String

func (x *ListInfoRequest) String() string

type ListInfoResponse

type ListInfoResponse struct {
	Messages []*RepoContribution `protobuf:"bytes,1,rep,name=messages,proto3" json:"messages,omitempty"`
	// contains filtered or unexported fields
}

func (*ListInfoResponse) Descriptor deprecated

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

Deprecated: Use ListInfoResponse.ProtoReflect.Descriptor instead.

func (*ListInfoResponse) GetMessages

func (x *ListInfoResponse) GetMessages() []*RepoContribution

func (*ListInfoResponse) ProtoMessage

func (*ListInfoResponse) ProtoMessage()

func (*ListInfoResponse) ProtoReflect

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

func (*ListInfoResponse) Reset

func (x *ListInfoResponse) Reset()

func (*ListInfoResponse) String

func (x *ListInfoResponse) String() string

type ListReadMeRequest

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

func (*ListReadMeRequest) Descriptor deprecated

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

Deprecated: Use ListReadMeRequest.ProtoReflect.Descriptor instead.

func (*ListReadMeRequest) ProtoMessage

func (*ListReadMeRequest) ProtoMessage()

func (*ListReadMeRequest) ProtoReflect

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

func (*ListReadMeRequest) Reset

func (x *ListReadMeRequest) Reset()

func (*ListReadMeRequest) String

func (x *ListReadMeRequest) String() string

type ListReadMeResponse

type ListReadMeResponse struct {
	Messages []*ReadMeHtml `protobuf:"bytes,1,rep,name=messages,proto3" json:"messages,omitempty"`
	// contains filtered or unexported fields
}

func (*ListReadMeResponse) Descriptor deprecated

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

Deprecated: Use ListReadMeResponse.ProtoReflect.Descriptor instead.

func (*ListReadMeResponse) GetMessages

func (x *ListReadMeResponse) GetMessages() []*ReadMeHtml

func (*ListReadMeResponse) ProtoMessage

func (*ListReadMeResponse) ProtoMessage()

func (*ListReadMeResponse) ProtoReflect

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

func (*ListReadMeResponse) Reset

func (x *ListReadMeResponse) Reset()

func (*ListReadMeResponse) String

func (x *ListReadMeResponse) String() string

type ReadContributionsRequest

type ReadContributionsRequest struct {
	Login            string `protobuf:"bytes,1,opt,name=login,proto3" json:"login,omitempty"`
	NumContributions int32  `protobuf:"varint,2,opt,name=num_contributions,json=numContributions,proto3" json:"num_contributions,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadContributionsRequest) Descriptor deprecated

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

Deprecated: Use ReadContributionsRequest.ProtoReflect.Descriptor instead.

func (*ReadContributionsRequest) GetLogin

func (x *ReadContributionsRequest) GetLogin() string

func (*ReadContributionsRequest) GetNumContributions

func (x *ReadContributionsRequest) GetNumContributions() int32

func (*ReadContributionsRequest) ProtoMessage

func (*ReadContributionsRequest) ProtoMessage()

func (*ReadContributionsRequest) ProtoReflect

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

func (*ReadContributionsRequest) Reset

func (x *ReadContributionsRequest) Reset()

func (*ReadContributionsRequest) String

func (x *ReadContributionsRequest) String() string

type ReadContributionsResponse

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

func (*ReadContributionsResponse) Descriptor deprecated

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

Deprecated: Use ReadContributionsResponse.ProtoReflect.Descriptor instead.

func (*ReadContributionsResponse) GetMessage

func (x *ReadContributionsResponse) GetMessage() *Contributions

func (*ReadContributionsResponse) ProtoMessage

func (*ReadContributionsResponse) ProtoMessage()

func (*ReadContributionsResponse) ProtoReflect

func (*ReadContributionsResponse) Reset

func (x *ReadContributionsResponse) Reset()

func (*ReadContributionsResponse) String

func (x *ReadContributionsResponse) String() string

type ReadContributorsRequest

type ReadContributorsRequest struct {
	Owner   string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	Repo    string `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo,omitempty"`
	Anon    string `protobuf:"bytes,3,opt,name=anon,proto3" json:"anon,omitempty"`
	PerPage int32  `protobuf:"varint,4,opt,name=per_page,json=perPage,proto3" json:"per_page,omitempty"`
	Page    int32  `protobuf:"varint,5,opt,name=page,proto3" json:"page,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadContributorsRequest) Descriptor deprecated

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

Deprecated: Use ReadContributorsRequest.ProtoReflect.Descriptor instead.

func (*ReadContributorsRequest) GetAnon

func (x *ReadContributorsRequest) GetAnon() string

func (*ReadContributorsRequest) GetOwner

func (x *ReadContributorsRequest) GetOwner() string

func (*ReadContributorsRequest) GetPage

func (x *ReadContributorsRequest) GetPage() int32

func (*ReadContributorsRequest) GetPerPage

func (x *ReadContributorsRequest) GetPerPage() int32

func (*ReadContributorsRequest) GetRepo

func (x *ReadContributorsRequest) GetRepo() string

func (*ReadContributorsRequest) ProtoMessage

func (*ReadContributorsRequest) ProtoMessage()

func (*ReadContributorsRequest) ProtoReflect

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

func (*ReadContributorsRequest) Reset

func (x *ReadContributorsRequest) Reset()

func (*ReadContributorsRequest) String

func (x *ReadContributorsRequest) String() string

type ReadContributorsResponse

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

func (*ReadContributorsResponse) Descriptor deprecated

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

Deprecated: Use ReadContributorsResponse.ProtoReflect.Descriptor instead.

func (*ReadContributorsResponse) GetMessage

func (x *ReadContributorsResponse) GetMessage() *RepoContributors

func (*ReadContributorsResponse) ProtoMessage

func (*ReadContributorsResponse) ProtoMessage()

func (*ReadContributorsResponse) ProtoReflect

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

func (*ReadContributorsResponse) Reset

func (x *ReadContributorsResponse) Reset()

func (*ReadContributorsResponse) String

func (x *ReadContributorsResponse) String() string

type ReadInfoRequest

type ReadInfoRequest struct {
	Owner string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	Repo  string `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo,omitempty"`
	// contains filtered or unexported fields
}

INFO

func (*ReadInfoRequest) Descriptor deprecated

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

Deprecated: Use ReadInfoRequest.ProtoReflect.Descriptor instead.

func (*ReadInfoRequest) GetOwner

func (x *ReadInfoRequest) GetOwner() string

func (*ReadInfoRequest) GetRepo

func (x *ReadInfoRequest) GetRepo() string

func (*ReadInfoRequest) ProtoMessage

func (*ReadInfoRequest) ProtoMessage()

func (*ReadInfoRequest) ProtoReflect

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

func (*ReadInfoRequest) Reset

func (x *ReadInfoRequest) Reset()

func (*ReadInfoRequest) String

func (x *ReadInfoRequest) String() string

type ReadInfoResponse

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

func (*ReadInfoResponse) Descriptor deprecated

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

Deprecated: Use ReadInfoResponse.ProtoReflect.Descriptor instead.

func (*ReadInfoResponse) GetMessage

func (x *ReadInfoResponse) GetMessage() *RepoContribution

func (*ReadInfoResponse) ProtoMessage

func (*ReadInfoResponse) ProtoMessage()

func (*ReadInfoResponse) ProtoReflect

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

func (*ReadInfoResponse) Reset

func (x *ReadInfoResponse) Reset()

func (*ReadInfoResponse) String

func (x *ReadInfoResponse) String() string

type ReadMeHtml

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

README

func (*ReadMeHtml) Descriptor deprecated

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

Deprecated: Use ReadMeHtml.ProtoReflect.Descriptor instead.

func (*ReadMeHtml) GetHtml

func (x *ReadMeHtml) GetHtml() string

func (*ReadMeHtml) ProtoMessage

func (*ReadMeHtml) ProtoMessage()

func (*ReadMeHtml) ProtoReflect

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

func (*ReadMeHtml) Reset

func (x *ReadMeHtml) Reset()

func (*ReadMeHtml) String

func (x *ReadMeHtml) String() string

type ReadMeServiceClient

type ReadMeServiceClient interface {
	ReadReadMe(ctx context.Context, in *ReadReadMeRequest, opts ...grpc.CallOption) (*ReadReadMeResponse, error)
	ListReadMe(ctx context.Context, in *ListReadMeRequest, opts ...grpc.CallOption) (*ListReadMeResponse, error)
	CreateReadMe(ctx context.Context, in *CreateReadMeRequest, opts ...grpc.CallOption) (*CreateReadMeResponse, error)
	UpdateReadMe(ctx context.Context, in *UpdateReadMeRequest, opts ...grpc.CallOption) (*UpdateReadMeResponse, error)
}

ReadMeServiceClient is the client API for ReadMeService 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 ReadMeServiceServer

ReadMeServiceServer is the server API for ReadMeService service. All implementations should embed UnimplementedReadMeServiceServer for forward compatibility

type ReadReadMeRequest

type ReadReadMeRequest struct {
	Owner      string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	Repo       string `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo,omitempty"`
	MainBranch string `protobuf:"bytes,3,opt,name=mainBranch,proto3" json:"mainBranch,omitempty"`
	FileExt    string `protobuf:"bytes,4,opt,name=fileExt,proto3" json:"fileExt,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadReadMeRequest) Descriptor deprecated

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

Deprecated: Use ReadReadMeRequest.ProtoReflect.Descriptor instead.

func (*ReadReadMeRequest) GetFileExt

func (x *ReadReadMeRequest) GetFileExt() string

func (*ReadReadMeRequest) GetMainBranch

func (x *ReadReadMeRequest) GetMainBranch() string

func (*ReadReadMeRequest) GetOwner

func (x *ReadReadMeRequest) GetOwner() string

func (*ReadReadMeRequest) GetRepo

func (x *ReadReadMeRequest) GetRepo() string

func (*ReadReadMeRequest) ProtoMessage

func (*ReadReadMeRequest) ProtoMessage()

func (*ReadReadMeRequest) ProtoReflect

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

func (*ReadReadMeRequest) Reset

func (x *ReadReadMeRequest) Reset()

func (*ReadReadMeRequest) String

func (x *ReadReadMeRequest) String() string

type ReadReadMeResponse

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

func (*ReadReadMeResponse) Descriptor deprecated

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

Deprecated: Use ReadReadMeResponse.ProtoReflect.Descriptor instead.

func (*ReadReadMeResponse) GetMessage

func (x *ReadReadMeResponse) GetMessage() *ReadMeHtml

func (*ReadReadMeResponse) ProtoMessage

func (*ReadReadMeResponse) ProtoMessage()

func (*ReadReadMeResponse) ProtoReflect

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

func (*ReadReadMeResponse) Reset

func (x *ReadReadMeResponse) Reset()

func (*ReadReadMeResponse) String

func (x *ReadReadMeResponse) String() string

type RepoContribution

type RepoContribution struct {
	NameWithOwner string     `protobuf:"bytes,1,opt,name=name_with_owner,json=nameWithOwner,proto3" json:"name_with_owner,omitempty"`
	Name          string     `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Url           string     `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
	Owner         *RepoOwner `protobuf:"bytes,4,opt,name=owner,proto3" json:"owner,omitempty"`
	// contains filtered or unexported fields
}

func (*RepoContribution) Descriptor deprecated

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

Deprecated: Use RepoContribution.ProtoReflect.Descriptor instead.

func (*RepoContribution) GetName

func (x *RepoContribution) GetName() string

func (*RepoContribution) GetNameWithOwner

func (x *RepoContribution) GetNameWithOwner() string

func (*RepoContribution) GetOwner

func (x *RepoContribution) GetOwner() *RepoOwner

func (*RepoContribution) GetUrl

func (x *RepoContribution) GetUrl() string

func (*RepoContribution) ProtoMessage

func (*RepoContribution) ProtoMessage()

func (*RepoContribution) ProtoReflect

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

func (*RepoContribution) Reset

func (x *RepoContribution) Reset()

func (*RepoContribution) String

func (x *RepoContribution) String() string

type RepoContributor

type RepoContributor struct {
	Login             string  `protobuf:"bytes,1,opt,name=login,proto3" json:"login,omitempty"`
	Id                int64   `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	NodeId            string  `protobuf:"bytes,3,opt,name=node_id,json=nodeId,proto3" json:"node_id,omitempty"`
	AvatarUrl         string  `protobuf:"bytes,4,opt,name=avatar_url,json=avatarUrl,proto3" json:"avatar_url,omitempty"`
	GravatarId        *string `protobuf:"bytes,5,opt,name=gravatar_id,json=gravatarId,proto3,oneof" json:"gravatar_id,omitempty"`
	Url               string  `protobuf:"bytes,6,opt,name=url,proto3" json:"url,omitempty"`
	HtmlUrl           string  `protobuf:"bytes,7,opt,name=html_url,json=htmlUrl,proto3" json:"html_url,omitempty"`
	FollowersUrl      string  `protobuf:"bytes,8,opt,name=followers_url,json=followersUrl,proto3" json:"followers_url,omitempty"`
	FollowingUrl      string  `protobuf:"bytes,9,opt,name=following_url,json=followingUrl,proto3" json:"following_url,omitempty"`
	GistsUrl          string  `protobuf:"bytes,10,opt,name=gists_url,json=gistsUrl,proto3" json:"gists_url,omitempty"`
	StarredUrl        string  `protobuf:"bytes,11,opt,name=starred_url,json=starredUrl,proto3" json:"starred_url,omitempty"`
	SubscriptionsUrl  string  `protobuf:"bytes,12,opt,name=subscriptions_url,json=subscriptionsUrl,proto3" json:"subscriptions_url,omitempty"`
	OrganizationsUrl  string  `protobuf:"bytes,13,opt,name=organizations_url,json=organizationsUrl,proto3" json:"organizations_url,omitempty"`
	ReposUrl          string  `protobuf:"bytes,14,opt,name=repos_url,json=reposUrl,proto3" json:"repos_url,omitempty"`
	EventsUrl         string  `protobuf:"bytes,15,opt,name=events_url,json=eventsUrl,proto3" json:"events_url,omitempty"`
	ReceivedEventsUrl string  `protobuf:"bytes,16,opt,name=received_events_url,json=receivedEventsUrl,proto3" json:"received_events_url,omitempty"`
	Type              string  `protobuf:"bytes,17,opt,name=type,proto3" json:"type,omitempty"`
	SiteAdmin         bool    `protobuf:"varint,18,opt,name=site_admin,json=siteAdmin,proto3" json:"site_admin,omitempty"`
	Contributions     int32   `protobuf:"varint,19,opt,name=contributions,proto3" json:"contributions,omitempty"`
	// contains filtered or unexported fields
}

func (*RepoContributor) Descriptor deprecated

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

Deprecated: Use RepoContributor.ProtoReflect.Descriptor instead.

func (*RepoContributor) GetAvatarUrl

func (x *RepoContributor) GetAvatarUrl() string

func (*RepoContributor) GetContributions

func (x *RepoContributor) GetContributions() int32

func (*RepoContributor) GetEventsUrl

func (x *RepoContributor) GetEventsUrl() string

func (*RepoContributor) GetFollowersUrl

func (x *RepoContributor) GetFollowersUrl() string

func (*RepoContributor) GetFollowingUrl

func (x *RepoContributor) GetFollowingUrl() string

func (*RepoContributor) GetGistsUrl

func (x *RepoContributor) GetGistsUrl() string

func (*RepoContributor) GetGravatarId

func (x *RepoContributor) GetGravatarId() string

func (*RepoContributor) GetHtmlUrl

func (x *RepoContributor) GetHtmlUrl() string

func (*RepoContributor) GetId

func (x *RepoContributor) GetId() int64

func (*RepoContributor) GetLogin

func (x *RepoContributor) GetLogin() string

func (*RepoContributor) GetNodeId

func (x *RepoContributor) GetNodeId() string

func (*RepoContributor) GetOrganizationsUrl

func (x *RepoContributor) GetOrganizationsUrl() string

func (*RepoContributor) GetReceivedEventsUrl

func (x *RepoContributor) GetReceivedEventsUrl() string

func (*RepoContributor) GetReposUrl

func (x *RepoContributor) GetReposUrl() string

func (*RepoContributor) GetSiteAdmin

func (x *RepoContributor) GetSiteAdmin() bool

func (*RepoContributor) GetStarredUrl

func (x *RepoContributor) GetStarredUrl() string

func (*RepoContributor) GetSubscriptionsUrl

func (x *RepoContributor) GetSubscriptionsUrl() string

func (*RepoContributor) GetType

func (x *RepoContributor) GetType() string

func (*RepoContributor) GetUrl

func (x *RepoContributor) GetUrl() string

func (*RepoContributor) ProtoMessage

func (*RepoContributor) ProtoMessage()

func (*RepoContributor) ProtoReflect

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

func (*RepoContributor) Reset

func (x *RepoContributor) Reset()

func (*RepoContributor) String

func (x *RepoContributor) String() string

type RepoContributors

type RepoContributors struct {
	Contributors []*RepoContributor `protobuf:"bytes,1,rep,name=contributors,proto3" json:"contributors,omitempty"`
	// contains filtered or unexported fields
}

CONTRIBUTORS

func (*RepoContributors) Descriptor deprecated

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

Deprecated: Use RepoContributors.ProtoReflect.Descriptor instead.

func (*RepoContributors) GetContributors

func (x *RepoContributors) GetContributors() []*RepoContributor

func (*RepoContributors) ProtoMessage

func (*RepoContributors) ProtoMessage()

func (*RepoContributors) ProtoReflect

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

func (*RepoContributors) Reset

func (x *RepoContributors) Reset()

func (*RepoContributors) String

func (x *RepoContributors) String() string

type RepoOwner

type RepoOwner struct {
	Login     string `protobuf:"bytes,1,opt,name=login,proto3" json:"login,omitempty"`
	Url       string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
	AvatarUrl string `protobuf:"bytes,3,opt,name=avatar_url,json=avatarUrl,proto3" json:"avatar_url,omitempty"`
	// contains filtered or unexported fields
}

func (*RepoOwner) Descriptor deprecated

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

Deprecated: Use RepoOwner.ProtoReflect.Descriptor instead.

func (*RepoOwner) GetAvatarUrl

func (x *RepoOwner) GetAvatarUrl() string

func (*RepoOwner) GetLogin

func (x *RepoOwner) GetLogin() string

func (*RepoOwner) GetUrl

func (x *RepoOwner) GetUrl() string

func (*RepoOwner) ProtoMessage

func (*RepoOwner) ProtoMessage()

func (*RepoOwner) ProtoReflect

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

func (*RepoOwner) Reset

func (x *RepoOwner) Reset()

func (*RepoOwner) String

func (x *RepoOwner) String() string

type UnimplementedContributionsServiceServer

type UnimplementedContributionsServiceServer struct {
}

UnimplementedContributionsServiceServer should be embedded to have forward compatible implementations.

func (UnimplementedContributionsServiceServer) CreateContributions

func (UnimplementedContributionsServiceServer) ListContributions

func (UnimplementedContributionsServiceServer) ReadContributions

func (UnimplementedContributionsServiceServer) UpdateContributions

type UnimplementedContributorsServiceServer

type UnimplementedContributorsServiceServer struct {
}

UnimplementedContributorsServiceServer should be embedded to have forward compatible implementations.

func (UnimplementedContributorsServiceServer) CreateContributors

func (UnimplementedContributorsServiceServer) ListContributors

func (UnimplementedContributorsServiceServer) ReadContributors

func (UnimplementedContributorsServiceServer) UpdateContributors

type UnimplementedHealthServiceServer

type UnimplementedHealthServiceServer struct {
}

UnimplementedHealthServiceServer should be embedded to have forward compatible implementations.

func (UnimplementedHealthServiceServer) ReadHealth

type UnimplementedInfoServiceServer

type UnimplementedInfoServiceServer struct {
}

UnimplementedInfoServiceServer should be embedded to have forward compatible implementations.

func (UnimplementedInfoServiceServer) CreateInfo

func (UnimplementedInfoServiceServer) ListInfo

func (UnimplementedInfoServiceServer) ReadInfo

func (UnimplementedInfoServiceServer) UpdateInfo

type UnimplementedReadMeServiceServer

type UnimplementedReadMeServiceServer struct {
}

UnimplementedReadMeServiceServer should be embedded to have forward compatible implementations.

func (UnimplementedReadMeServiceServer) CreateReadMe

func (UnimplementedReadMeServiceServer) ListReadMe

func (UnimplementedReadMeServiceServer) ReadReadMe

func (UnimplementedReadMeServiceServer) UpdateReadMe

type UnsafeContributionsServiceServer

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

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

type UnsafeContributorsServiceServer

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

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

type UnsafeHealthServiceServer

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

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

type UnsafeInfoServiceServer

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

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

type UnsafeReadMeServiceServer

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

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

type UpdateContributionsRequest

type UpdateContributionsRequest struct {
	Login         string         `protobuf:"bytes,1,opt,name=login,proto3" json:"login,omitempty"`
	Contributions *Contributions `protobuf:"bytes,2,opt,name=contributions,proto3" json:"contributions,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateContributionsRequest) Descriptor deprecated

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

Deprecated: Use UpdateContributionsRequest.ProtoReflect.Descriptor instead.

func (*UpdateContributionsRequest) GetContributions

func (x *UpdateContributionsRequest) GetContributions() *Contributions

func (*UpdateContributionsRequest) GetLogin

func (x *UpdateContributionsRequest) GetLogin() string

func (*UpdateContributionsRequest) ProtoMessage

func (*UpdateContributionsRequest) ProtoMessage()

func (*UpdateContributionsRequest) ProtoReflect

func (*UpdateContributionsRequest) Reset

func (x *UpdateContributionsRequest) Reset()

func (*UpdateContributionsRequest) String

func (x *UpdateContributionsRequest) String() string

type UpdateContributionsResponse

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

func (*UpdateContributionsResponse) Descriptor deprecated

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

Deprecated: Use UpdateContributionsResponse.ProtoReflect.Descriptor instead.

func (*UpdateContributionsResponse) ProtoMessage

func (*UpdateContributionsResponse) ProtoMessage()

func (*UpdateContributionsResponse) ProtoReflect

func (*UpdateContributionsResponse) Reset

func (x *UpdateContributionsResponse) Reset()

func (*UpdateContributionsResponse) String

func (x *UpdateContributionsResponse) String() string

type UpdateContributorsRequest

type UpdateContributorsRequest struct {
	Owner            string            `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	Repo             string            `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo,omitempty"`
	RepoContributors *RepoContributors `protobuf:"bytes,3,opt,name=repoContributors,proto3" json:"repoContributors,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateContributorsRequest) Descriptor deprecated

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

Deprecated: Use UpdateContributorsRequest.ProtoReflect.Descriptor instead.

func (*UpdateContributorsRequest) GetOwner

func (x *UpdateContributorsRequest) GetOwner() string

func (*UpdateContributorsRequest) GetRepo

func (x *UpdateContributorsRequest) GetRepo() string

func (*UpdateContributorsRequest) GetRepoContributors

func (x *UpdateContributorsRequest) GetRepoContributors() *RepoContributors

func (*UpdateContributorsRequest) ProtoMessage

func (*UpdateContributorsRequest) ProtoMessage()

func (*UpdateContributorsRequest) ProtoReflect

func (*UpdateContributorsRequest) Reset

func (x *UpdateContributorsRequest) Reset()

func (*UpdateContributorsRequest) String

func (x *UpdateContributorsRequest) String() string

type UpdateContributorsResponse

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

func (*UpdateContributorsResponse) Descriptor deprecated

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

Deprecated: Use UpdateContributorsResponse.ProtoReflect.Descriptor instead.

func (*UpdateContributorsResponse) ProtoMessage

func (*UpdateContributorsResponse) ProtoMessage()

func (*UpdateContributorsResponse) ProtoReflect

func (*UpdateContributorsResponse) Reset

func (x *UpdateContributorsResponse) Reset()

func (*UpdateContributorsResponse) String

func (x *UpdateContributorsResponse) String() string

type UpdateInfoRequest

type UpdateInfoRequest struct {
	Owner string            `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	Repo  string            `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo,omitempty"`
	Info  *RepoContribution `protobuf:"bytes,3,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateInfoRequest) Descriptor deprecated

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

Deprecated: Use UpdateInfoRequest.ProtoReflect.Descriptor instead.

func (*UpdateInfoRequest) GetInfo

func (x *UpdateInfoRequest) GetInfo() *RepoContribution

func (*UpdateInfoRequest) GetOwner

func (x *UpdateInfoRequest) GetOwner() string

func (*UpdateInfoRequest) GetRepo

func (x *UpdateInfoRequest) GetRepo() string

func (*UpdateInfoRequest) ProtoMessage

func (*UpdateInfoRequest) ProtoMessage()

func (*UpdateInfoRequest) ProtoReflect

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

func (*UpdateInfoRequest) Reset

func (x *UpdateInfoRequest) Reset()

func (*UpdateInfoRequest) String

func (x *UpdateInfoRequest) String() string

type UpdateInfoResponse

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

func (*UpdateInfoResponse) Descriptor deprecated

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

Deprecated: Use UpdateInfoResponse.ProtoReflect.Descriptor instead.

func (*UpdateInfoResponse) ProtoMessage

func (*UpdateInfoResponse) ProtoMessage()

func (*UpdateInfoResponse) ProtoReflect

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

func (*UpdateInfoResponse) Reset

func (x *UpdateInfoResponse) Reset()

func (*UpdateInfoResponse) String

func (x *UpdateInfoResponse) String() string

type UpdateReadMeRequest

type UpdateReadMeRequest struct {
	Owner      string      `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	Repo       string      `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo,omitempty"`
	MainBranch string      `protobuf:"bytes,3,opt,name=mainBranch,proto3" json:"mainBranch,omitempty"`
	FileExt    string      `protobuf:"bytes,4,opt,name=fileExt,proto3" json:"fileExt,omitempty"`
	ReadMeHtml *ReadMeHtml `protobuf:"bytes,5,opt,name=readMeHtml,proto3" json:"readMeHtml,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateReadMeRequest) Descriptor deprecated

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

Deprecated: Use UpdateReadMeRequest.ProtoReflect.Descriptor instead.

func (*UpdateReadMeRequest) GetFileExt

func (x *UpdateReadMeRequest) GetFileExt() string

func (*UpdateReadMeRequest) GetMainBranch

func (x *UpdateReadMeRequest) GetMainBranch() string

func (*UpdateReadMeRequest) GetOwner

func (x *UpdateReadMeRequest) GetOwner() string

func (*UpdateReadMeRequest) GetReadMeHtml

func (x *UpdateReadMeRequest) GetReadMeHtml() *ReadMeHtml

func (*UpdateReadMeRequest) GetRepo

func (x *UpdateReadMeRequest) GetRepo() string

func (*UpdateReadMeRequest) ProtoMessage

func (*UpdateReadMeRequest) ProtoMessage()

func (*UpdateReadMeRequest) ProtoReflect

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

func (*UpdateReadMeRequest) Reset

func (x *UpdateReadMeRequest) Reset()

func (*UpdateReadMeRequest) String

func (x *UpdateReadMeRequest) String() string

type UpdateReadMeResponse

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

func (*UpdateReadMeResponse) Descriptor deprecated

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

Deprecated: Use UpdateReadMeResponse.ProtoReflect.Descriptor instead.

func (*UpdateReadMeResponse) ProtoMessage

func (*UpdateReadMeResponse) ProtoMessage()

func (*UpdateReadMeResponse) ProtoReflect

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

func (*UpdateReadMeResponse) Reset

func (x *UpdateReadMeResponse) Reset()

func (*UpdateReadMeResponse) String

func (x *UpdateReadMeResponse) String() string

Jump to

Keyboard shortcuts

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