diff --git a/.gitignore b/.gitignore index f1c181e..3fa0a28 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,6 @@ # Output of the go coverage tool, specifically when used with LiteIDE *.out + +# Development enviroment +.idea \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..6e0f612 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module Backend-V3 + +go 1.12 diff --git a/main.go b/main.go new file mode 100644 index 0000000..89490cd --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("test") +}