refactor: reorganize modules and add Linux build tooling

This commit is contained in:
2026-08-09 12:41:08 +08:00
parent 86024fa81d
commit 5cc5fd92ed
1461 changed files with 4054 additions and 4724 deletions

View File

@@ -0,0 +1,127 @@
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.5.1
// - protoc (unknown)
// source: coupon.proto
package order
import (
context "context"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
)
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
// Requires gRPC-Go v1.64.0 or later.
const _ = grpc.SupportPackageIsVersion9
const (
Coupon_ByStatus_FullMethodName = "/order.Coupon/ByStatus"
)
// CouponClient is the client API for Coupon service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
//
// Order(订单)微服务-优惠卷
type CouponClient interface {
// 按状态获取优惠卷
ByStatus(ctx context.Context, in *Status, opts ...grpc.CallOption) (*CouponListReply, error)
}
type couponClient struct {
cc grpc.ClientConnInterface
}
func NewCouponClient(cc grpc.ClientConnInterface) CouponClient {
return &couponClient{cc}
}
func (c *couponClient) ByStatus(ctx context.Context, in *Status, opts ...grpc.CallOption) (*CouponListReply, error) {
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
out := new(CouponListReply)
err := c.cc.Invoke(ctx, Coupon_ByStatus_FullMethodName, in, out, cOpts...)
if err != nil {
return nil, err
}
return out, nil
}
// CouponServer is the server API for Coupon service.
// All implementations must embed UnimplementedCouponServer
// for forward compatibility.
//
// Order(订单)微服务-优惠卷
type CouponServer interface {
// 按状态获取优惠卷
ByStatus(context.Context, *Status) (*CouponListReply, error)
mustEmbedUnimplementedCouponServer()
}
// UnimplementedCouponServer must be embedded to have
// forward compatible implementations.
//
// NOTE: this should be embedded by value instead of pointer to avoid a nil
// pointer dereference when methods are called.
type UnimplementedCouponServer struct{}
func (UnimplementedCouponServer) ByStatus(context.Context, *Status) (*CouponListReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method ByStatus not implemented")
}
func (UnimplementedCouponServer) mustEmbedUnimplementedCouponServer() {}
func (UnimplementedCouponServer) testEmbeddedByValue() {}
// UnsafeCouponServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to CouponServer will
// result in compilation errors.
type UnsafeCouponServer interface {
mustEmbedUnimplementedCouponServer()
}
func RegisterCouponServer(s grpc.ServiceRegistrar, srv CouponServer) {
// If the following call pancis, it indicates UnimplementedCouponServer was
// embedded by pointer and is nil. This will cause panics if an
// unimplemented method is ever invoked, so we test this at initialization
// time to prevent it from happening at runtime later due to I/O.
if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
t.testEmbeddedByValue()
}
s.RegisterService(&Coupon_ServiceDesc, srv)
}
func _Coupon_ByStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Status)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(CouponServer).ByStatus(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: Coupon_ByStatus_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(CouponServer).ByStatus(ctx, req.(*Status))
}
return interceptor(ctx, in, info, handler)
}
// Coupon_ServiceDesc is the grpc.ServiceDesc for Coupon service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var Coupon_ServiceDesc = grpc.ServiceDesc{
ServiceName: "order.Coupon",
HandlerType: (*CouponServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "ByStatus",
Handler: _Coupon_ByStatus_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "coupon.proto",
}