mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
3172bc0467
PiperOrigin-RevId: 611671170
18 lines
382 B
Python
18 lines
382 B
Python
load("//tools:defs.bzl", "go_binary")
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
go_binary(
|
|
name = "github",
|
|
srcs = ["main.go"],
|
|
nogo = False,
|
|
deps = [
|
|
"//tools/github/reviver",
|
|
"@com_github_google_go_github_v56//github:go_default_library",
|
|
"@org_golang_x_oauth2//:go_default_library",
|
|
],
|
|
)
|