From 86896aedd0023ba0751fde96c67541d3e088abb9 Mon Sep 17 00:00:00 2001 From: HFO4 <912394456@qq.com> Date: Mon, 4 Nov 2019 20:30:12 +0800 Subject: [PATCH] Init --- .gitignore | 3 +++ go.mod | 3 +++ main.go | 7 +++++++ 3 files changed, 13 insertions(+) create mode 100644 go.mod create mode 100644 main.go 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") +}