aboutsummaryrefslogtreecommitdiff
path: root/tests/legacy/providers/test.bzl
blob: a82ba5f501275e5c4e05aa5296e0c99f34b2b17c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
load("//go:def.bzl", "GoLibrary")

def _test_impl(ctx):
    pass

test_source = rule(
    implementation = _test_impl,
    attrs = {
        "srcs": attr.label(
            mandatory = True,
            providers = [GoLibrary],
        ),
    },
)