...

Text file src/edge-infra.dev/hack/tools/bzl/index.bzl

Documentation: edge-infra.dev/hack/tools/bzl

     1"""Simple module entrypoint to avoid multiple `load()` calls in consumers."""
     2
     3load(
     4    "//hack/tools/bzl:tools.bzl",
     5    _tool = "tool",
     6)
     7load(
     8    "//hack/tools/bzl:platforms.bzl",
     9    _platforms = "platforms",
    10)
    11load(
    12    "//hack/tools/bzl:workspace_binary.bzl",
    13    _workspace_binary = "workspace_binary",
    14)
    15
    16platforms = _platforms
    17tool = _tool
    18workspace_binary = _workspace_binary

View as plain text