blob: f685b9849e5962ab1ccb139d19a1bb10586d24e7 [file] [log] [blame]
Serge Bazanski424e2012023-02-15 23:31:49 +01001load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_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)