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.
gomud/BUILD.bazel

22 lines
452 B
Python

load("@rules_go//go:def.bzl", "go_library")
load("@gazelle//:def.bzl", "gazelle")
gazelle(name = "gazelle")
gazelle(
name = "gazelle-update-repos",
args = [
"-from_file=go.mod",
"-to_macro=deps.bzl%go_dependencies",
"-prune",
],
command = "update-repos",
)
go_library(
name = "gomud",
srcs = ["version.go"],
importpath = "code.ndumas.com/ndumas/gomud",
visibility = ["//visibility:public"],
)