1load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
2
3package(
4 default_visibility =
5 ["//:__subpackages__"],
6)
7
8licenses(["notice"])
9
10filegroup(
11 name = "all_files",
12 srcs = glob(["**"]),
13)
14
15bzl_library(
16 name = "bzl",
17 srcs = glob(["*.bzl"]),
18)
19