diff options
| author | Matthieu <matthieu@developershouse.xyz> | 2021-09-25 11:18:46 +0400 |
|---|---|---|
| committer | Matthieu <matthieu@developershouse.xyz> | 2021-09-25 11:18:46 +0400 |
| commit | f81d93f1c8fd5f5a525b2f7f7ac53c0d554d33f4 (patch) | |
| tree | 1df459c9e85189cc8f88144b19da95a4663abc71 | |
| parent | 30ec86caa2e318ea8cf39699fee56f9b8daca591 (diff) | |
base for the manager
| -rw-r--r-- | manager/BUILD.bazel | 14 | ||||
| -rw-r--r-- | manager/main.go | 7 |
2 files changed, 21 insertions, 0 deletions
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 |
