...

Text file src/github.com/grpc-ecosystem/grpc-gateway/v2/internal/casing/BUILD.bazel

Documentation: github.com/grpc-ecosystem/grpc-gateway/v2/internal/casing

     1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
     2
     3go_library(
     4    name = "casing",
     5    srcs = ["camel.go"],
     6    importpath = "github.com/grpc-ecosystem/grpc-gateway/v2/internal/casing",
     7    visibility = ["//:__subpackages__"],
     8)
     9
    10alias(
    11    name = "go_default_library",
    12    actual = ":casing",
    13    visibility = ["//:__subpackages__"],
    14)
    15
    16go_test(
    17    name = "casing_test",
    18    srcs = ["camel_test.go"],
    19    embed = [":casing"],
    20)

View as plain text