blob: 512ebed1024f6386660eefc84cea9a355dfbc8e7 [file] [log] [blame]
Tim Windelschmidtb6308cd2023-10-10 21:19:03 +02001load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
4 name = "shepherd",
5 srcs = ["shepherd.go"],
6 importpath = "source.monogon.dev/cloud/shepherd",
7 visibility = ["//visibility:public"],
8 deps = [
9 "//cloud/bmaas/bmdb",
10 "//cloud/bmaas/bmdb/model",
11 ],
12)