Skip to content

Commit 7eb99bc

Browse files
lvan100lianghuan
authored andcommitted
Initial commit
1 parent 6adf202 commit 7eb99bc

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ coverage.*
1818
profile.cov
1919

2020
# Dependency directories (remove the comment below to include it)
21-
# vendor/
21+
vendor/
2222

2323
# Go workspace file
2424
go.work
@@ -28,5 +28,5 @@ go.work.sum
2828
.env
2929

3030
# Editor/IDE
31-
# .idea/
32-
# .vscode/
31+
.idea/
32+
.vscode/

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/go-spring/gs-gen
2+
3+
go 1.24

go.sum

Whitespace-only changes.

main.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package main
2+
3+
import (
4+
"fmt"
5+
)
6+
7+
func main() {
8+
fmt.Println("gen")
9+
}

0 commit comments

Comments
 (0)