mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-15 17:19:10 +00:00
15 lines
380 B
Text
15 lines
380 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:go_default_library",
|
|
],
|
|
)
|