diff --git a/hello_world/BUILD.bazel b/hello_world/BUILD.bazel new file mode 100644 index 0000000..64ad2b3 --- /dev/null +++ b/hello_world/BUILD.bazel @@ -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"], +)