From f7ccd08b2e6fb7c3c84aafb9ba239358a702f48d Mon Sep 17 00:00:00 2001 From: Geno Date: Sun, 5 Sep 2021 13:31:06 +0200 Subject: [PATCH] init --- distributor/go.mod | 3 +++ distributor/main.go | 9 +++++++++ gateway/go.mod | 3 +++ gateway/main.go | 9 +++++++++ 4 files changed, 24 insertions(+) create mode 100644 distributor/go.mod create mode 100644 distributor/main.go create mode 100644 gateway/go.mod create mode 100644 gateway/main.go diff --git a/distributor/go.mod b/distributor/go.mod new file mode 100644 index 0000000..849fcbd --- /dev/null +++ b/distributor/go.mod @@ -0,0 +1,3 @@ +module dev.sum7.eu/genofire/unified-push-xmpp/distributor + +go 1.17 diff --git a/distributor/main.go b/distributor/main.go new file mode 100644 index 0000000..4e9805e --- /dev/null +++ b/distributor/main.go @@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("startup") +} diff --git a/gateway/go.mod b/gateway/go.mod new file mode 100644 index 0000000..6a61bee --- /dev/null +++ b/gateway/go.mod @@ -0,0 +1,3 @@ +module dev.sum7.eu/genofire/unified-push-xmpp/gateway + +go 1.17 diff --git a/gateway/main.go b/gateway/main.go new file mode 100644 index 0000000..4e9805e --- /dev/null +++ b/gateway/main.go @@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("startup") +}