Skip to content
Snippets Groups Projects
Commit f97ac0c9 authored by Oliver Herms's avatar Oliver Herms
Browse files

Gazelle

parent 26ac3185
Branches
Tags
No related merge requests found
......@@ -8,6 +8,7 @@ go_library(
],
importpath = "github.com/bio-routing/bio-rd/net",
visibility = ["//visibility:public"],
deps = ["//net/api:go_default_library"],
)
go_test(
......@@ -17,5 +18,8 @@ go_test(
"prefix_test.go",
],
embed = [":go_default_library"],
deps = ["//vendor/github.com/stretchr/testify/assert:go_default_library"],
deps = [
"//net/api:go_default_library",
"//vendor/github.com/stretchr/testify/assert:go_default_library",
],
)
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
proto_library(
name = "api_proto",
srcs = ["net.proto"],
visibility = ["//visibility:public"],
)
go_proto_library(
name = "api_go_proto",
importpath = "github.com/bio-routing/bio-rd/net/api",
proto = ":api_proto",
visibility = ["//visibility:public"],
)
go_library(
name = "go_default_library",
embed = [":api_go_proto"],
importpath = "github.com/bio-routing/bio-rd/net/api",
visibility = ["//visibility:public"],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment