mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
13 lines
361 B
Text
13 lines
361 B
Text
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "enttest",
|
|
srcs = ["enttest.go"],
|
|
importpath = "github.com/roleypoly/roleypoly/src/db/ent/enttest",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//src/db/ent",
|
|
"//src/db/ent/runtime",
|
|
"@com_github_facebook_ent//dialect/sql/schema",
|
|
],
|
|
)
|