From 95b7572f7dff07e404d3f6c17d572776bb43649f Mon Sep 17 00:00:00 2001 From: SAF Date: Thu, 28 Nov 2024 10:30:22 +0000 Subject: [PATCH] Add BUILD file for hello_world --- hello_world/BUILD.bazel | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 hello_world/BUILD.bazel 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"], +)