2021-06-30 17:53:06 +03:00
|
|
|
// Code generated by protoc-gen-go-micro. DO NOT EDIT.
|
2021-07-16 00:41:10 +03:00
|
|
|
// protoc-gen-go-micro version: v3.4.2
|
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"
|
|
|
|
proto "github.com/unistack-org/micro-tests/server/grpc/proto"
|
|
|
|
api "github.com/unistack-org/micro/v3/api"
|
|
|
|
client "github.com/unistack-org/micro/v3/client"
|
|
|
|
)
|
|
|
|
|
2021-06-30 17:53:06 +03:00
|
|
|
var (
|
2021-07-16 00:41:10 +03:00
|
|
|
TestName = "Test"
|
|
|
|
|
2021-08-17 01:11:23 +03:00
|
|
|
TestEndpoints = []api.Endpoint{}
|
2021-06-30 17:53:06 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func NewTestEndpoints() []api.Endpoint {
|
|
|
|
return TestEndpoints
|
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
|
|
|
|
}
|