This commit is contained in:
HFO4 2019-11-04 20:30:12 +08:00
parent cd1f3be22d
commit 86896aedd0
3 changed files with 13 additions and 0 deletions

3
.gitignore vendored
View file

@ -10,3 +10,6 @@
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Development enviroment
.idea

3
go.mod Normal file
View file

@ -0,0 +1,3 @@
module Backend-V3
go 1.12

7
main.go Normal file
View file

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