mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-01 22:33:30 +08:00
30 lines
785 B
Go
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
|
|
)
|