peridot/apollo/db/mock/BUILD.bazel

15 lines
349 B
Python
Raw Normal View History

2022-07-07 20:11:50 +00:00
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "mock",
srcs = ["mock.go"],
2022-10-30 01:59:25 +00:00
importpath = "peridot.resf.org/apollo/db/mock",
2022-07-07 20:11:50 +00:00
visibility = ["//visibility:public"],
deps = [
2022-10-30 01:59:25 +00:00
"//apollo/db",
"//apollo/proto/v1:pb",
2022-07-07 20:11:50 +00:00
"//utils",
2022-10-30 01:59:25 +00:00
"//vendor/github.com/jmoiron/sqlx/types",
2022-07-07 20:11:50 +00:00
],
)