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:
|
2023-03-05 15:03:48 +03:00
|
|
|
// - protoc-gen-go-micro v3.10.2
|
2023-01-07 19:16:48 +03:00
|
|
|
// - protoc v3.21.12
|
2021-02-27 13:51:39 +03:00
|
|
|
// source: test.proto
|
2021-06-30 17:53:06 +03:00
|
|
|
|
2021-02-27 13:51:39 +03:00
|
|
|
package helloworld
|
|
|
|
|
|
|
|
import (
|
|
|
|
context "context"
|
2023-02-22 00:12:01 +03:00
|
|
|
v3 "go.unistack.org/micro-server-http/v3"
|
2021-10-27 01:24:35 +03:00
|
|
|
proto "go.unistack.org/micro-tests/server/grpc/proto"
|
|
|
|
client "go.unistack.org/micro/v3/client"
|
2021-02-27 13:51:39 +03:00
|
|
|
)
|
|
|
|
|
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
|
|
|
)
|
|
|
|
var (
|
|
|
|
TestServerEndpoints = []v3.EndpointMetadata{
|
2021-10-27 01:24:35 +03:00
|
|
|
{
|
2023-02-22 00:12:01 +03:00
|
|
|
Name: "Test.Call",
|
|
|
|
Path: "/api/v0/test/call/TEST",
|
|
|
|
Method: "POST",
|
|
|
|
Body: "*",
|
|
|
|
Stream: false,
|
2021-10-27 01:24:35 +03:00
|
|
|
},
|
|
|
|
}
|
2021-06-30 17:53:06 +03:00
|
|
|
)
|
|
|
|
|
2021-02-27 13:51:39 +03:00
|
|
|
type TestClient interface {
|
|
|
|
Call(ctx context.Context, req *proto.Request, opts ...client.CallOption) (*proto.Response, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type TestServer interface {
|
|
|
|
Call(ctx context.Context, req *proto.Request, rsp *proto.Response) error
|
|
|
|
}
|