mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
15 lines
363 B
Python
15 lines
363 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "connector",
|
|
srcs = ["connector.go"],
|
|
importpath = "peridot.resf.org/obsidian/db/connector",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//obsidian/db",
|
|
"//obsidian/db/psql",
|
|
"//utils",
|
|
"//vendor/github.com/sirupsen/logrus",
|
|
],
|
|
)
|