Add BUILD file for hello_world

This commit is contained in:
SAF 2024-11-28 10:30:22 +00:00
parent 853a4f96a7
commit 95b7572f7d

9
hello_world/BUILD.bazel Normal file
View File

@ -0,0 +1,9 @@
load("@rules_go//go:def.bzl", "go_library")
go_library(
name = "hello_world",
srcs = ["hello_world.go"],
importpath = "git.saf.sh/saf/bazel_test/hello_world",
visibility = ["//visibility:public"],
deps = ["@org_golang_x_example_hello//reverse"],
)