mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 18:31:54 +00:00
20 lines
501 B
Python
20 lines
501 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "httpserver",
|
|
srcs = [
|
|
"handler.go",
|
|
"listener.go",
|
|
"server.go",
|
|
],
|
|
importpath = "github.com/sourcegraph/sourcegraph/internal/httpserver",
|
|
tags = [TAG_PLATFORM_SOURCE],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/env",
|
|
"//internal/goroutine",
|
|
"@com_github_gorilla_mux//:mux",
|
|
"@com_github_inconshreveable_log15//:log15",
|
|
],
|
|
)
|