First commit with gitignore for the binary and initializing go modules

This commit is contained in:
Christopher Talib 2020-01-14 09:43:12 +01:00
commit b4e07b254a
3 changed files with 11 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
styx-poc

3
go.mod Normal file
View file

@ -0,0 +1,3 @@
module gitlab.dcso.lolcat/LABS/styx-poc
go 1.12

7
main.go Normal file
View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello world!")
}