From: Matthieu Date: Sat, 25 Sep 2021 07:18:46 +0000 (+0400) Subject: base for the manager X-Git-Tag: v0.1~56^2~40^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=f81d93f1c8fd5f5a525b2f7f7ac53c0d554d33f4;p=matthieu%2Fnova.git base for the manager --- diff --git a/manager/BUILD.bazel b/manager/BUILD.bazel new file mode 100644 index 0000000..6588d89 --- /dev/null +++ b/manager/BUILD.bazel @@ -0,0 +1,14 @@ +load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") + +go_library( + name = "manager_lib", + srcs = ["main.go"], + importpath = "github.com/discordnova/nova/manager", + visibility = ["//visibility:private"], +) + +go_binary( + name = "manager", + embed = [":manager_lib"], + visibility = ["//visibility:public"], +) diff --git a/manager/main.go b/manager/main.go new file mode 100644 index 0000000..0507461 --- /dev/null +++ b/manager/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hi! I am the nova manager :)") +} \ No newline at end of file