2021-07-14 11:48:20 +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-07-14 11:48:20 +03:00
|
|
|
// source: test.proto
|
|
|
|
|
|
|
|
package pb
|
|
|
|
|
|
|
|
import (
|
|
|
|
context "context"
|
2021-10-27 01:24:35 +03:00
|
|
|
client "go.unistack.org/micro/v3/client"
|
2021-07-14 11:48:20 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
TestServiceName = "TestService"
|
2023-02-22 00:12:01 +03:00
|
|
|
)
|
2021-07-14 11:48:20 +03:00
|
|
|
|
|
|
|
type TestServiceClient interface {
|
|
|
|
LookupUser(ctx context.Context, req *LookupUserReq, opts ...client.CallOption) (*LookupUserRsp, error)
|
2021-07-16 00:41:10 +03:00
|
|
|
UpdateUser(ctx context.Context, req *UpdateUserReq, opts ...client.CallOption) (*UpdateUserRsp, error)
|
|
|
|
DeleteUser(ctx context.Context, req *DeleteUserReq, opts ...client.CallOption) (*DeleteUserRsp, error)
|
|
|
|
MailUser(ctx context.Context, req *MailUserReq, opts ...client.CallOption) (*MailUserRsp, error)
|
2021-07-14 11:48:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type TestServiceServer interface {
|
|
|
|
LookupUser(ctx context.Context, req *LookupUserReq, rsp *LookupUserRsp) error
|
2021-07-16 00:41:10 +03:00
|
|
|
UpdateUser(ctx context.Context, req *UpdateUserReq, rsp *UpdateUserRsp) error
|
|
|
|
DeleteUser(ctx context.Context, req *DeleteUserReq, rsp *DeleteUserRsp) error
|
|
|
|
MailUser(ctx context.Context, req *MailUserReq, rsp *MailUserRsp) error
|
2021-07-14 11:48:20 +03:00
|
|
|
}
|