moving the echo command before it gets hairy
parent
ee4a6f8fc5
commit
d53e123b7c
@ -1,14 +1,14 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "cmd_lib",
|
||||
srcs = ["echo.go"],
|
||||
importpath = "code.ndumas.com/ndumas/gomud/cmd",
|
||||
name = "echo_lib",
|
||||
srcs = ["server.go"],
|
||||
importpath = "code.ndumas.com/ndumas/gomud/cmd/echo",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
go_binary(
|
||||
name = "cmd",
|
||||
embed = [":cmd_lib"],
|
||||
name = "echo",
|
||||
embed = [":echo_lib"],
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
Loading…
Reference in New Issue