BUILD.bazel 362 B

123456789
  1. load("@io_bazel_rules_go//go:def.bzl", "go_library")
  2. go_library(
  3. name = "routes",
  4. srcs = ["routes.go"],
  5. importpath = "gogs.dezendorf.net/breandan/monorepo/dezendorf/applications/golink/internal/routes",
  6. visibility = ["//dezendorf/applications/golink:__subpackages__"],
  7. deps = ["@com_github_julienschmidt_httprouter//:go_default_library"],
  8. )