This commit is contained in:
xing 2022-08-22 09:36:13 +08:00
commit 57ace3e333
3 changed files with 12 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.idea
wp-go.iml

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module github/fthvgb1/wp-go
go 1.18

7
main.go Normal file
View File

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