Files
MonkeyCode/backend/internal/third.go
2025-08-07 20:08:59 +08:00

30 lines
785 B
Go

package internal
// Pro module third-party package imports
// These imports ensure that the special third-party packages used in the pro module
// are included in the build, even if they are not directly used in the main codebase.
import (
_ "embed"
// gRPC and Protocol Buffers
_ "google.golang.org/grpc"
_ "google.golang.org/grpc/codes"
_ "google.golang.org/grpc/status"
_ "google.golang.org/protobuf/reflect/protoreflect"
_ "google.golang.org/protobuf/runtime/protoimpl"
_ "google.golang.org/protobuf/types/known/emptypb"
// Web framework
_ "github.com/GoYoko/web"
// Wire dependency injection
_ "github.com/google/wire"
// UUID generation
_ "github.com/google/uuid"
// Echo web framework
_ "github.com/labstack/echo/v4"
// Embed directive for certificates
)