Serge Bazanski | 424e201 | 2023-02-15 23:31:49 +0100 | [diff] [blame] | 1 | load("@io_bazel_rules_go//go:def.bzl", "go_library") |
2 | |||||
3 | go_library( | ||||
4 | name = "reflection", | ||||
5 | srcs = [ | ||||
6 | "reflection.go", | ||||
7 | "schema.go", | ||||
8 | ], | ||||
9 | importpath = "source.monogon.dev/cloud/bmaas/bmdb/reflection", | ||||
10 | visibility = ["//visibility:public"], | ||||
11 | deps = [ | ||||
12 | "@com_github_google_uuid//:uuid", | ||||
13 | "@com_github_iancoleman_strcase//:strcase", | ||||
14 | "@io_k8s_klog_v2//:klog", | ||||
15 | ], | ||||
16 | ) |