run gazelle on logger

This commit is contained in:
2023-04-29 23:49:04 -07:00
parent b3935c501e
commit 25642eff64
2 changed files with 15 additions and 0 deletions

9
log/BUILD.bazel Normal file
View File

@@ -0,0 +1,9 @@
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "log",
srcs = ["logger.go"],
importpath = "git.wntrmute.dev/kyle/kdhcp/log",
visibility = ["//visibility:public"],
deps = ["@com_github_hashicorp_go_syslog//:go-syslog"],
)