forked from matoski/services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathv1.pb.micro.go
178 lines (150 loc) · 5.87 KB
/
v1.pb.micro.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
// Code generated by protoc-gen-micro. DO NOT EDIT.
// source: proto/v1.proto
package v1
import (
fmt "fmt"
proto "github.com/golang/protobuf/proto"
math "math"
)
import (
context "context"
api "github.com/micro/micro/v3/service/api"
client "github.com/micro/micro/v3/service/client"
server "github.com/micro/micro/v3/service/server"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
// Reference imports to suppress errors if they are not otherwise used.
var _ api.Endpoint
var _ context.Context
var _ client.Option
var _ server.Option
// Api Endpoints for V1 service
func NewV1Endpoints() []*api.Endpoint {
return []*api.Endpoint{}
}
// Client API for V1 service
type V1Service interface {
GenerateKey(ctx context.Context, in *GenerateKeyRequest, opts ...client.CallOption) (*GenerateKeyResponse, error)
ListKeys(ctx context.Context, in *ListRequest, opts ...client.CallOption) (*ListResponse, error)
RevokeKey(ctx context.Context, in *RevokeRequest, opts ...client.CallOption) (*RevokeResponse, error)
UnblockKey(ctx context.Context, in *UnblockKeyRequest, opts ...client.CallOption) (*UnblockKeyResponse, error)
BlockKey(ctx context.Context, in *BlockKeyRequest, opts ...client.CallOption) (*BlockKeyResponse, error)
DeleteCustomer(ctx context.Context, in *DeleteCustomerRequest, opts ...client.CallOption) (*DeleteCustomerResponse, error)
}
type v1Service struct {
c client.Client
name string
}
func NewV1Service(name string, c client.Client) V1Service {
return &v1Service{
c: c,
name: name,
}
}
func (c *v1Service) GenerateKey(ctx context.Context, in *GenerateKeyRequest, opts ...client.CallOption) (*GenerateKeyResponse, error) {
req := c.c.NewRequest(c.name, "V1.GenerateKey", in)
out := new(GenerateKeyResponse)
err := c.c.Call(ctx, req, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *v1Service) ListKeys(ctx context.Context, in *ListRequest, opts ...client.CallOption) (*ListResponse, error) {
req := c.c.NewRequest(c.name, "V1.ListKeys", in)
out := new(ListResponse)
err := c.c.Call(ctx, req, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *v1Service) RevokeKey(ctx context.Context, in *RevokeRequest, opts ...client.CallOption) (*RevokeResponse, error) {
req := c.c.NewRequest(c.name, "V1.RevokeKey", in)
out := new(RevokeResponse)
err := c.c.Call(ctx, req, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *v1Service) UnblockKey(ctx context.Context, in *UnblockKeyRequest, opts ...client.CallOption) (*UnblockKeyResponse, error) {
req := c.c.NewRequest(c.name, "V1.UnblockKey", in)
out := new(UnblockKeyResponse)
err := c.c.Call(ctx, req, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *v1Service) BlockKey(ctx context.Context, in *BlockKeyRequest, opts ...client.CallOption) (*BlockKeyResponse, error) {
req := c.c.NewRequest(c.name, "V1.BlockKey", in)
out := new(BlockKeyResponse)
err := c.c.Call(ctx, req, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *v1Service) DeleteCustomer(ctx context.Context, in *DeleteCustomerRequest, opts ...client.CallOption) (*DeleteCustomerResponse, error) {
req := c.c.NewRequest(c.name, "V1.DeleteCustomer", in)
out := new(DeleteCustomerResponse)
err := c.c.Call(ctx, req, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// Server API for V1 service
type V1Handler interface {
GenerateKey(context.Context, *GenerateKeyRequest, *GenerateKeyResponse) error
ListKeys(context.Context, *ListRequest, *ListResponse) error
RevokeKey(context.Context, *RevokeRequest, *RevokeResponse) error
UnblockKey(context.Context, *UnblockKeyRequest, *UnblockKeyResponse) error
BlockKey(context.Context, *BlockKeyRequest, *BlockKeyResponse) error
DeleteCustomer(context.Context, *DeleteCustomerRequest, *DeleteCustomerResponse) error
}
func RegisterV1Handler(s server.Server, hdlr V1Handler, opts ...server.HandlerOption) error {
type v1 interface {
GenerateKey(ctx context.Context, in *GenerateKeyRequest, out *GenerateKeyResponse) error
ListKeys(ctx context.Context, in *ListRequest, out *ListResponse) error
RevokeKey(ctx context.Context, in *RevokeRequest, out *RevokeResponse) error
UnblockKey(ctx context.Context, in *UnblockKeyRequest, out *UnblockKeyResponse) error
BlockKey(ctx context.Context, in *BlockKeyRequest, out *BlockKeyResponse) error
DeleteCustomer(ctx context.Context, in *DeleteCustomerRequest, out *DeleteCustomerResponse) error
}
type V1 struct {
v1
}
h := &v1Handler{hdlr}
return s.Handle(s.NewHandler(&V1{h}, opts...))
}
type v1Handler struct {
V1Handler
}
func (h *v1Handler) GenerateKey(ctx context.Context, in *GenerateKeyRequest, out *GenerateKeyResponse) error {
return h.V1Handler.GenerateKey(ctx, in, out)
}
func (h *v1Handler) ListKeys(ctx context.Context, in *ListRequest, out *ListResponse) error {
return h.V1Handler.ListKeys(ctx, in, out)
}
func (h *v1Handler) RevokeKey(ctx context.Context, in *RevokeRequest, out *RevokeResponse) error {
return h.V1Handler.RevokeKey(ctx, in, out)
}
func (h *v1Handler) UnblockKey(ctx context.Context, in *UnblockKeyRequest, out *UnblockKeyResponse) error {
return h.V1Handler.UnblockKey(ctx, in, out)
}
func (h *v1Handler) BlockKey(ctx context.Context, in *BlockKeyRequest, out *BlockKeyResponse) error {
return h.V1Handler.BlockKey(ctx, in, out)
}
func (h *v1Handler) DeleteCustomer(ctx context.Context, in *DeleteCustomerRequest, out *DeleteCustomerResponse) error {
return h.V1Handler.DeleteCustomer(ctx, in, out)
}