// Package internal contains dependency blank imports for the Kratos migration. // These ensure go mod tidy keeps the required packages until the migration // is complete and actual code imports them directly. // This file will be removed after the migration is finished. package internal import ( // Kratos framework - core, transports, config, logging _ "github.com/go-kratos/kratos/v2" _ "github.com/go-kratos/kratos/v2/config" _ "github.com/go-kratos/kratos/v2/config/file" _ "github.com/go-kratos/kratos/v2/log" _ "github.com/go-kratos/kratos/v2/middleware/auth/jwt" _ "github.com/go-kratos/kratos/v2/middleware/logging" _ "github.com/go-kratos/kratos/v2/middleware/recovery" _ "github.com/go-kratos/kratos/v2/middleware/tracing" _ "github.com/go-kratos/kratos/v2/middleware/validate" _ "github.com/go-kratos/kratos/v2/transport/grpc" _ "github.com/go-kratos/kratos/v2/transport/http" // Wire DI _ "github.com/google/wire" // Watermill - event-driven CQRS _ "github.com/ThreeDotsLabs/watermill" _ "github.com/ThreeDotsLabs/watermill-sql/v2/pkg/sql" // GORM - ORM for PostgreSQL _ "gorm.io/driver/postgres" _ "gorm.io/gorm" )