2021-06-30 17:53:06 +03:00
|
|
|
// Code generated by protoc-gen-go-micro. DO NOT EDIT.
|
2023-01-07 19:16:48 +03:00
|
|
|
// versions:
|
|
|
|
// - protoc-gen-go-micro v3.5.3
|
|
|
|
// - protoc v3.21.12
|
2021-02-06 19:08:01 +03:00
|
|
|
// source: test.proto
|
2021-06-30 17:53:06 +03:00
|
|
|
|
2021-02-06 19:08:01 +03:00
|
|
|
package pb
|
|
|
|
|
|
|
|
import (
|
2021-02-27 13:51:39 +03:00
|
|
|
context "context"
|
2021-10-27 01:24:35 +03:00
|
|
|
api "go.unistack.org/micro/v3/api"
|
|
|
|
client "go.unistack.org/micro/v3/client"
|
2021-02-06 19:08:01 +03:00
|
|
|
)
|
|
|
|
|
2021-06-30 17:53:06 +03:00
|
|
|
var (
|
2021-07-16 00:41:10 +03:00
|
|
|
TestDoubleName = "TestDouble"
|
|
|
|
|
2021-06-30 17:53:06 +03:00
|
|
|
TestDoubleEndpoints = []api.Endpoint{
|
2021-08-20 23:03:51 +03:00
|
|
|
{
|
2021-03-09 14:25:27 +03:00
|
|
|
Name: "TestDouble.CallDouble",
|
2021-07-31 15:17:18 +03:00
|
|
|
Path: []string{"/v1/testdouble/call/name/{name}"},
|
2021-03-09 14:25:27 +03:00
|
|
|
Method: []string{"POST"},
|
|
|
|
Body: "*",
|
|
|
|
Handler: "rpc",
|
|
|
|
},
|
|
|
|
}
|
2021-06-30 17:53:06 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func NewTestDoubleEndpoints() []api.Endpoint {
|
|
|
|
return TestDoubleEndpoints
|
2021-03-09 14:25:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type TestDoubleClient interface {
|
|
|
|
CallDouble(ctx context.Context, req *CallReq, opts ...client.CallOption) (*CallRsp, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type TestDoubleServer interface {
|
|
|
|
CallDouble(ctx context.Context, req *CallReq, rsp *CallRsp) error
|
|
|
|
}
|
|
|
|
|
2021-06-30 17:53:06 +03:00
|
|
|
var (
|
2021-07-16 00:41:10 +03:00
|
|
|
TestName = "Test"
|
|
|
|
|
2021-06-30 17:53:06 +03:00
|
|
|
TestEndpoints = []api.Endpoint{
|
2021-08-20 23:03:51 +03:00
|
|
|
{
|
2021-04-19 11:36:58 +03:00
|
|
|
Name: "Test.CallRepeatedString",
|
2021-09-30 03:10:20 +03:00
|
|
|
Path: []string{"/v1/test/call_repeated_string"},
|
2021-04-19 11:36:58 +03:00
|
|
|
Method: []string{"POST"},
|
|
|
|
Body: "*",
|
|
|
|
Handler: "rpc",
|
|
|
|
},
|
2021-08-20 23:03:51 +03:00
|
|
|
{
|
2021-04-19 11:36:58 +03:00
|
|
|
Name: "Test.CallRepeatedInt64",
|
2021-09-30 03:10:20 +03:00
|
|
|
Path: []string{"/v1/test/call_repeated_int64"},
|
2021-04-19 02:16:00 +03:00
|
|
|
Method: []string{"POST"},
|
|
|
|
Body: "*",
|
|
|
|
Handler: "rpc",
|
|
|
|
},
|
2021-08-20 23:03:51 +03:00
|
|
|
{
|
2021-02-27 13:51:39 +03:00
|
|
|
Name: "Test.Call",
|
|
|
|
Path: []string{"/v1/test/call/{name}"},
|
|
|
|
Method: []string{"POST"},
|
|
|
|
Body: "*",
|
|
|
|
Handler: "rpc",
|
|
|
|
},
|
2021-08-20 23:03:51 +03:00
|
|
|
{
|
2021-02-27 13:51:39 +03:00
|
|
|
Name: "Test.CallError",
|
|
|
|
Path: []string{"/v1/test/callerror/{name}"},
|
|
|
|
Method: []string{"POST"},
|
|
|
|
Body: "*",
|
|
|
|
Handler: "rpc",
|
|
|
|
},
|
2021-02-06 19:08:01 +03:00
|
|
|
}
|
2021-06-30 17:53:06 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func NewTestEndpoints() []api.Endpoint {
|
|
|
|
return TestEndpoints
|
2021-02-06 19:08:01 +03:00
|
|
|
}
|
|
|
|
|
2021-02-27 13:51:39 +03:00
|
|
|
type TestClient interface {
|
2021-04-19 11:36:58 +03:00
|
|
|
CallRepeatedString(ctx context.Context, req *CallReq, opts ...client.CallOption) (*CallRsp, error)
|
|
|
|
CallRepeatedInt64(ctx context.Context, req *CallReq, opts ...client.CallOption) (*CallRsp, error)
|
2021-02-27 13:51:39 +03:00
|
|
|
Call(ctx context.Context, req *CallReq, opts ...client.CallOption) (*CallRsp, error)
|
|
|
|
CallError(ctx context.Context, req *CallReq1, opts ...client.CallOption) (*CallRsp1, error)
|
2021-02-06 19:08:01 +03:00
|
|
|
}
|
|
|
|
|
2021-02-27 13:51:39 +03:00
|
|
|
type TestServer interface {
|
2021-04-19 11:36:58 +03:00
|
|
|
CallRepeatedString(ctx context.Context, req *CallReq, rsp *CallRsp) error
|
|
|
|
CallRepeatedInt64(ctx context.Context, req *CallReq, rsp *CallRsp) error
|
2021-02-27 13:51:39 +03:00
|
|
|
Call(ctx context.Context, req *CallReq, rsp *CallRsp) error
|
|
|
|
CallError(ctx context.Context, req *CallReq1, rsp *CallRsp1) error
|
2021-02-06 19:08:01 +03:00
|
|
|
}
|