1load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 3go_library( 4 name = "common", 5 srcs = ["common.go"], 6 importpath = "edge-infra.dev/pkg/sds/patching/common", 7 visibility = ["//visibility:public"], 8 deps = [ 9 "@com_github_hashicorp_go_version//:go-version", 10 "@com_github_peterbourgon_ff_v3//:ff", 11 ], 12)