27 lines
529 B
Python
27 lines
529 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
licenses(["notice"])
|
|
|
|
load(
|
|
"@io_bazel_rules_go//go:def.bzl",
|
|
"go_binary",
|
|
"go_library",
|
|
)
|
|
|
|
go_binary(
|
|
name = "guestbook-go",
|
|
library = ":go_default_library",
|
|
tags = ["automanaged"],
|
|
)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["main.go"],
|
|
tags = ["automanaged"],
|
|
deps = [
|
|
"//vendor:github.com/codegangsta/negroni",
|
|
"//vendor:github.com/gorilla/mux",
|
|
"//vendor:github.com/xyproto/simpleredis",
|
|
],
|
|
)
|