diff options
| author | Matthieu <matthieu@developershouse.xyz> | 2021-09-25 10:27:03 +0000 |
|---|---|---|
| committer | Matthieu <matthieu@developershouse.xyz> | 2021-09-25 10:27:03 +0000 |
| commit | b7af2f42afc691d418a7dd006f5bad3285f0549c (patch) | |
| tree | 1ffd803a679bf7d72611459177acd801d935a8ba | |
| parent | 376f00642c2adba158b148a7933383af53ecdba1 (diff) | |
| parent | f81d93f1c8fd5f5a525b2f7f7ac53c0d554d33f4 (diff) | |
Merge branch 'management' of https://github.com/discordnova/nova into management
| -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 |
