blob: 19f690eeed65e6f0d03907e782b13d601856f832 [file] [log] [blame]
László Csomor8d4f7612019-01-08 09:04:53 +01001# Copyright 2019 The Bazel Authors. All rights reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15"""Maprule implementation in Starlark.
16
17This module exports:
18
19This module exports the maprule_testing struct. This should only be used by maprule's own unittests.
20"""
21
22load(":maprule_private.bzl", _maprule_testing = "maprule_testing")
23
24maprule_testing = _maprule_testing