xref: /aosp_15_r20/external/stardoc/test/testdata/same_level_file_test/input.bzl (revision b2fa42943c124aa9c7163734493fc7a7559681cf)
1# buildifier: disable=module-docstring
2load(":dep.bzl", "my_rule_impl")
3
4my_rule = rule(
5    implementation = my_rule_impl,
6    doc = "This is my rule. It does stuff.",
7    attrs = {
8        "first": attr.label(
9            mandatory = True,
10            doc = "first my_rule doc string",
11            allow_single_file = True,
12        ),
13        "second": attr.string_dict(mandatory = True),
14    },
15)
16