blob: db6f2375e1aee0319140ec9ac8ab12834f6fcd3d [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "roll",
srcs = ["roll_dice.go"],
importpath = "github.com/bazelbuild/rules_go/examples/basic-gazelle/pkg/roll",
visibility = ["//visibility:public"],
deps = ["@io_k8s_klog_v2//:klog"],
)
go_test(
name = "roll_test",
srcs = ["roll_dice_test.go"],
embed = [":roll"],
)