File: BUILD.bazel

package info (click to toggle)
golang-github-grpc-ecosystem-grpc-gateway 2.20.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,236 kB
  • sloc: javascript: 357; makefile: 147; sh: 26
file content (20 lines) | stat: -rw-r--r-- 445 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")

go_library(
    name = "casing",
    srcs = ["camel.go"],
    importpath = "github.com/grpc-ecosystem/grpc-gateway/v2/internal/casing",
    visibility = ["//:__subpackages__"],
)

alias(
    name = "go_default_library",
    actual = ":casing",
    visibility = ["//:__subpackages__"],
)

go_test(
    name = "casing_test",
    srcs = ["camel_test.go"],
    embed = [":casing"],
)