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