blob: c862b277cd605c86a6c8aab03146ee7ef1f4c74e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
load("@io_bazel_rules_go//go:def.bzl", "go_binary")
package(licenses = ["notice"])
go_binary(
name = "go_marshal",
srcs = ["main.go"],
visibility = [
"//:sandbox",
],
deps = [
"//tools/go_marshal/gomarshal",
],
)
|