commit b4e07b254a413565da852f535c9e4cd0e60c4cb6 Author: Christopher Talib Date: Tue Jan 14 09:43:12 2020 +0100 First commit with gitignore for the binary and initializing go modules diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d45d889 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +styx-poc diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..7bc722b --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module gitlab.dcso.lolcat/LABS/styx-poc + +go 1.12 diff --git a/main.go b/main.go new file mode 100644 index 0000000..70a7fe5 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello world!") +}