mirror of
https://github.com/temporalio/temporal.git
synced 2026-08-30 18:41:49 -07:00
## What changed?
<!-- Describe what has changed in this PR -->
Remove license header from every file. Because it is really hard to
follow in this PR here is the summary:
1. License header is removed from all `.go` and `.proto` files
:fireworks::fireworks:🎆.
2. `LICENSE` file in the root directory has only Temporal and Uber
copyrights.
3. 5 other `LICENSE` files added to the packages which have copyrights
different from Temporal and Uber: Datadog, Xargin, "Mat Ryer, Tyler
Bunnell and contributors".
4. `license_file` flag is removed from all code generation tools.
5. `copyright_file` flag is removed from `go:generate mockgen`
directive.
6. All copyright related targets are removed from `Makefile`.
7. Updated Temporal copyright year to 2025 everywhere.
## Why?
<!-- Tell your future self why have you made these changes -->
I double checked with legal department that it is not needed to have
license header in every file. One file per repo is enough. I put all
copyrights to the root `LICENSE` file and removed header from all other
files. Also updated tools and `Makefile`.
113 lines
3.8 KiB
Go
113 lines
3.8 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// plugins:
|
|
// - protoc-gen-go-grpc
|
|
// - protoc
|
|
// source: temporal/server/api/testservice/v1/service.proto
|
|
|
|
package testservice
|
|
|
|
import (
|
|
context "context"
|
|
|
|
grpc "google.golang.org/grpc"
|
|
codes "google.golang.org/grpc/codes"
|
|
status "google.golang.org/grpc/status"
|
|
)
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
// Requires gRPC-Go v1.32.0 or later.
|
|
const _ = grpc.SupportPackageIsVersion7
|
|
|
|
const (
|
|
TestService_SendHello_FullMethodName = "/temporal.server.api.testservice.v1.TestService/SendHello"
|
|
)
|
|
|
|
// TestServiceClient is the client API for TestService 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 TestServiceClient interface {
|
|
// Sends a greeting
|
|
SendHello(ctx context.Context, in *SendHelloRequest, opts ...grpc.CallOption) (*SendHelloResponse, error)
|
|
}
|
|
|
|
type testServiceClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewTestServiceClient(cc grpc.ClientConnInterface) TestServiceClient {
|
|
return &testServiceClient{cc}
|
|
}
|
|
|
|
func (c *testServiceClient) SendHello(ctx context.Context, in *SendHelloRequest, opts ...grpc.CallOption) (*SendHelloResponse, error) {
|
|
out := new(SendHelloResponse)
|
|
err := c.cc.Invoke(ctx, TestService_SendHello_FullMethodName, in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// TestServiceServer is the server API for TestService service.
|
|
// All implementations must embed UnimplementedTestServiceServer
|
|
// for forward compatibility
|
|
type TestServiceServer interface {
|
|
// Sends a greeting
|
|
SendHello(context.Context, *SendHelloRequest) (*SendHelloResponse, error)
|
|
mustEmbedUnimplementedTestServiceServer()
|
|
}
|
|
|
|
// UnimplementedTestServiceServer must be embedded to have forward compatible implementations.
|
|
type UnimplementedTestServiceServer struct {
|
|
}
|
|
|
|
func (UnimplementedTestServiceServer) SendHello(context.Context, *SendHelloRequest) (*SendHelloResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SendHello not implemented")
|
|
}
|
|
func (UnimplementedTestServiceServer) mustEmbedUnimplementedTestServiceServer() {}
|
|
|
|
// UnsafeTestServiceServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to TestServiceServer will
|
|
// result in compilation errors.
|
|
type UnsafeTestServiceServer interface {
|
|
mustEmbedUnimplementedTestServiceServer()
|
|
}
|
|
|
|
func RegisterTestServiceServer(s grpc.ServiceRegistrar, srv TestServiceServer) {
|
|
s.RegisterService(&TestService_ServiceDesc, srv)
|
|
}
|
|
|
|
func _TestService_SendHello_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(SendHelloRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(TestServiceServer).SendHello(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: TestService_SendHello_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(TestServiceServer).SendHello(ctx, req.(*SendHelloRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
// TestService_ServiceDesc is the grpc.ServiceDesc for TestService service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var TestService_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "temporal.server.api.testservice.v1.TestService",
|
|
HandlerType: (*TestServiceServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "SendHello",
|
|
Handler: _TestService_SendHello_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "temporal/server/api/testservice/v1/service.proto",
|
|
}
|