1load("//go:def.bzl", "GoLibrary") 2 3def _test_impl(ctx): 4 pass 5 6test_source = rule( 7 implementation = _test_impl, 8 attrs = { 9 "srcs": attr.label( 10 mandatory = True, 11 providers = [GoLibrary], 12 ), 13 }, 14) 15