This commit is contained in:
Geno 2021-09-05 13:31:06 +02:00
commit f7ccd08b2e
4 changed files with 24 additions and 0 deletions

3
distributor/go.mod Normal file
View File

@ -0,0 +1,3 @@
module dev.sum7.eu/genofire/unified-push-xmpp/distributor
go 1.17

9
distributor/main.go Normal file
View File

@ -0,0 +1,9 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("startup")
}

3
gateway/go.mod Normal file
View File

@ -0,0 +1,3 @@
module dev.sum7.eu/genofire/unified-push-xmpp/gateway
go 1.17

9
gateway/main.go Normal file
View File

@ -0,0 +1,9 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("startup")
}