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:
|
2024-12-11 02:00:29 +03:00
|
|
|
// - protoc-gen-go-micro v3.10.4
|
|
|
|
// - protoc v5.28.3
|
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
|
|
|
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"
|
2023-02-22 00:12:01 +03:00
|
|
|
)
|
2021-06-30 17:53:06 +03:00
|
|
|
|
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"
|
2023-02-22 00:12:01 +03:00
|
|
|
)
|
2021-06-30 17:53:06 +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
|
|
|
}
|