• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1"""Wrapper around `native.alias()` to test supplying a custom `alias_rule`."""
2
3def alias_rule(name, actual, tags):
4    native.alias(
5        name = name,
6        actual = actual,
7        tags = tags,
8    )
9