mirror of
https://github.com/resf/distro-tools.git
synced 2024-11-10 23:31:28 +00:00
14 lines
310 B
Python
14 lines
310 B
Python
|
load("@aspect_rules_py//py:defs.bzl", "py_library")
|
||
|
|
||
|
py_library(
|
||
|
name = "serialize_lib",
|
||
|
srcs = ["__init__.py"],
|
||
|
imports = ["../../.."],
|
||
|
visibility = ["//:__subpackages__"],
|
||
|
deps = [
|
||
|
"//apollo/db:db_lib",
|
||
|
"@pypi_pydantic//:pkg",
|
||
|
"@pypi_tortoise_orm//:pkg",
|
||
|
],
|
||
|
)
|