From 5c50a0e93e187be6d86c46d7d96b65c7c09a735e Mon Sep 17 00:00:00 2001 From: Matthias Puchstein Date: Tue, 16 Jun 2020 17:53:47 +0200 Subject: [PATCH] initialized project --- go.mod | 3 +++ owlygamesserver.go | 7 +++++++ 2 files changed, 10 insertions(+) create mode 100644 go.mod create mode 100644 owlygamesserver.go diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..57fea02 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module gitea.puchstein.bayern/mpuchstein/OwlyGamesServer + +go 1.14 diff --git a/owlygamesserver.go b/owlygamesserver.go new file mode 100644 index 0000000..91cca4f --- /dev/null +++ b/owlygamesserver.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, world.") +}