We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6adf202 commit 7eb99bcCopy full SHA for 7eb99bc
.gitignore
@@ -18,7 +18,7 @@ coverage.*
18
profile.cov
19
20
# Dependency directories (remove the comment below to include it)
21
-# vendor/
+vendor/
22
23
# Go workspace file
24
go.work
@@ -28,5 +28,5 @@ go.work.sum
28
.env
29
30
# Editor/IDE
31
-# .idea/
32
-# .vscode/
+.idea/
+.vscode/
go.mod
@@ -0,0 +1,3 @@
1
+module github.com/go-spring/gs-gen
2
+
3
+go 1.24
go.sum
main.go
@@ -0,0 +1,9 @@
+package main
+import (
4
+ "fmt"
5
+)
6
7
+func main() {
8
+ fmt.Println("gen")
9
+}
0 commit comments