This commit is contained in:
Reid 'arrdem' McKenzie 2024-02-06 11:18:33 -07:00
commit 514e90d55d
17 changed files with 21 additions and 21 deletions
projects/flowmetal

View file

@ -2,7 +2,7 @@ package(default_visibility = ["//visibility:public"])
py_library(
name = "lib",
srcs = glob(["src/python/flowmetal/*.py"]),
srcs = glob(["src/flowmetal/*.py"]),
imports = [
"src/python"
],
@ -17,5 +17,5 @@ py_binary(
py_requirement("click"),
py_requirement("redis"),
],
main = "src/python/flowmetal/__main__.py",
main = "src/flowmetal/__main__.py",
)