123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // source: smart_auth.proto
- // package声明符,用来防止不同的消息类型有命名冲突
- package pb
- import (
- context "context"
- fmt "fmt"
- proto "github.com/golang/protobuf/proto"
- grpc "google.golang.org/grpc"
- codes "google.golang.org/grpc/codes"
- status "google.golang.org/grpc/status"
- math "math"
- v1 "smart-government-management/pb/v1"
- )
- // 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
- func init() {
- proto.RegisterFile("smart_auth.proto", fileDescriptor_aaaceba66a98f379)
- }
- var fileDescriptor_aaaceba66a98f379 = []byte{
- // 147 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x28, 0xce, 0x4d, 0x2c,
- 0x2a, 0x89, 0x4f, 0x2c, 0x2d, 0xc9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x2a, 0x48,
- 0x92, 0xe2, 0x2f, 0x33, 0xd4, 0x4f, 0x49, 0x2d, 0xcb, 0x4c, 0x4e, 0x85, 0x08, 0x1a, 0xc5, 0x73,
- 0x71, 0x06, 0x83, 0x14, 0x3a, 0x96, 0x96, 0x64, 0x08, 0x05, 0x71, 0x09, 0xb9, 0x80, 0x25, 0x9d,
- 0x33, 0x12, 0xf3, 0xd2, 0x53, 0xfd, 0xf2, 0x4b, 0x32, 0xd3, 0x2a, 0x85, 0x64, 0xf5, 0xca, 0x0c,
- 0xf5, 0x30, 0xc5, 0x83, 0x52, 0x0b, 0x4b, 0x53, 0x8b, 0x4b, 0xa4, 0xa4, 0x71, 0x49, 0x17, 0xe4,
- 0x54, 0x2a, 0x31, 0x38, 0x29, 0x44, 0xc9, 0x81, 0x5d, 0xa2, 0x9b, 0x9e, 0x5f, 0x96, 0x5a, 0x94,
- 0x97, 0x9b, 0x9a, 0x57, 0xa2, 0x9b, 0x9b, 0x98, 0x97, 0x98, 0x9e, 0x0a, 0x62, 0xea, 0x17, 0x24,
- 0x25, 0xb1, 0x81, 0x5d, 0x62, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x95, 0x60, 0x37, 0xb6, 0xb2,
- 0x00, 0x00, 0x00,
- }
- // Reference imports to suppress errors if they are not otherwise used.
- var _ context.Context
- var _ grpc.ClientConnInterface
- // This is a compile-time assertion to ensure that this generated file
- // is compatible with the grpc package it is being compiled against.
- const _ = grpc.SupportPackageIsVersion6
- // SmartAuthClient is the client API for SmartAuth service.
- //
- // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
- type SmartAuthClient interface {
- DeviceChangeNotify(ctx context.Context, in *v1.DeviceChangeNotifyRequest, opts ...grpc.CallOption) (*v1.DeviceChangeNotifyReply, error)
- }
- type smartAuthClient struct {
- cc grpc.ClientConnInterface
- }
- func NewSmartAuthClient(cc grpc.ClientConnInterface) SmartAuthClient {
- return &smartAuthClient{cc}
- }
- func (c *smartAuthClient) DeviceChangeNotify(ctx context.Context, in *v1.DeviceChangeNotifyRequest, opts ...grpc.CallOption) (*v1.DeviceChangeNotifyReply, error) {
- out := new(v1.DeviceChangeNotifyReply)
- err := c.cc.Invoke(ctx, "/pb.SmartAuth/DeviceChangeNotify", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- // SmartAuthServer is the server API for SmartAuth service.
- type SmartAuthServer interface {
- DeviceChangeNotify(context.Context, *v1.DeviceChangeNotifyRequest) (*v1.DeviceChangeNotifyReply, error)
- }
- // UnimplementedSmartAuthServer can be embedded to have forward compatible implementations.
- type UnimplementedSmartAuthServer struct {
- }
- func (*UnimplementedSmartAuthServer) DeviceChangeNotify(ctx context.Context, req *v1.DeviceChangeNotifyRequest) (*v1.DeviceChangeNotifyReply, error) {
- return nil, status.Errorf(codes.Unimplemented, "method DeviceChangeNotify not implemented")
- }
- func RegisterSmartAuthServer(s *grpc.Server, srv SmartAuthServer) {
- s.RegisterService(&_SmartAuth_serviceDesc, srv)
- }
- func _SmartAuth_DeviceChangeNotify_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(v1.DeviceChangeNotifyRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(SmartAuthServer).DeviceChangeNotify(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/pb.SmartAuth/DeviceChangeNotify",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(SmartAuthServer).DeviceChangeNotify(ctx, req.(*v1.DeviceChangeNotifyRequest))
- }
- return interceptor(ctx, in, info, handler)
- }
- var _SmartAuth_serviceDesc = grpc.ServiceDesc{
- ServiceName: "pb.SmartAuth",
- HandlerType: (*SmartAuthServer)(nil),
- Methods: []grpc.MethodDesc{
- {
- MethodName: "DeviceChangeNotify",
- Handler: _SmartAuth_DeviceChangeNotify_Handler,
- },
- },
- Streams: []grpc.StreamDesc{},
- Metadata: "smart_auth.proto",
- }
|