13 lines
358 B
Go
13 lines
358 B
Go
package tools
|
|
|
|
// These blank imports are used to ensure that dependency tools are included in the go.mod file.
|
|
|
|
import (
|
|
_ "connectrpc.com/connect"
|
|
_ "github.com/aarondl/opt"
|
|
_ "github.com/bufbuild/protovalidate-go"
|
|
_ "github.com/stephenafamo/bob"
|
|
_ "google.golang.org/protobuf/reflect/protoreflect"
|
|
_ "google.golang.org/protobuf/runtime/protoimpl"
|
|
)
|