You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
424 B
Python

load("@rules_go//go:def.bzl", "go_binary", "go_library")
load("@gazelle//:def.bzl", "gazelle")
gazelle(name = "gazelle")
go_library(
name = "bingbong_lib",
srcs = ["main.go"],
importpath = "bingbong",
visibility = ["//visibility:private"],
deps = ["@org_uber_go_zap//:go_default_library"],
)
go_binary(
name = "bingbong",
embed = [":bingbong_lib"],
visibility = ["//visibility:public"],
)