...

Text file src/github.com/bazelbuild/rules_go/docs/go/extras/extras.bzl

Documentation: github.com/bazelbuild/rules_go/docs/go/extras

     1"""
     2  [gazelle rule]: https://github.com/bazelbuild/bazel-gazelle#bazel-rule
     3  [golang/mock]: https://github.com/golang/mock
     4  [core go rules]: /docs/go/core/rules.md
     5
     6# Extra rules
     7
     8This is a collection of helper rules. These are not core to building a go binary, but are supplied
     9to make life a little easier.
    10
    11## Contents
    12- [gazelle](#gazelle)
    13- [gomock](#gomock)
    14
    15## Additional resources
    16- [gazelle rule]
    17- [golang/mock]
    18- [core go rules]
    19
    20------------------------------------------------------------------------
    21
    22gazelle
    23-------
    24
    25This rule has moved. See [gazelle rule] in the Gazelle repository.
    26
    27"""
    28
    29load("//extras:gomock.bzl", _gomock = "gomock")
    30
    31gomock = _gomock

View as plain text