re-init because of weird subtree shit

This commit is contained in:
41666 2020-09-15 22:25:26 -04:00
commit 68254ddd13
85 changed files with 13501 additions and 0 deletions

View file

@ -0,0 +1,15 @@
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",
],
)