Skip to content

Commit

Permalink
bazel(logger): add initial build.bazel file
Browse files Browse the repository at this point in the history
  • Loading branch information
symbiont-stevan-andjelkovic committed Jan 27, 2021
1 parent 4ebcde9 commit 07fbed8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/logger/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")

go_binary(
name = "logger",
embed = [":logger_lib"],
visibility = ["//visibility:public"],
)

go_library(
name = "logger_lib",
srcs = ["main.go"],
importpath = "github.com/symbiont-io/detsys-testkit/src/logger",
visibility = ["//visibility:private"],
deps = [
"@com_github_mattn_go_sqlite3//:go-sqlite3",
],
)

0 comments on commit 07fbed8

Please sign in to comment.