mirror of
https://github.com/resf/distro-tools.git
synced 2024-11-09 14:51:27 +00:00
13 lines
261 B
Python
13 lines
261 B
Python
load("@aspect_rules_py//py:defs.bzl", "py_library")
|
|
|
|
py_library(
|
|
name = "db_lib",
|
|
srcs = [
|
|
"__init__.py",
|
|
"advisory.py",
|
|
],
|
|
imports = ["../.."],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = ["@pypi_tortoise_orm//:pkg"],
|
|
)
|