1 2 3 4 5 6 7 8 9 10
load("//tools:defs.bzl", "go_binary") package(licenses = ["notice"]) go_binary( name = "server", srcs = ["main.go"], pure = True, visibility = ["//website:__pkg__"], )