feat(start): initialize project with Go scaffold
- Add basic Go application structure.- Include `.gitignore` file with common Go ignores. - Create `main.go` with initial "Hello, World!" implementation.
This commit is contained in:
parent
21161bee1c
commit
a03430e03f
16
.gitignore
vendored
16
.gitignore
vendored
@ -1,4 +1,15 @@
|
|||||||
# ---> Go
|
### Example user template template
|
||||||
|
### Example user template
|
||||||
|
|
||||||
|
# IntelliJ project files
|
||||||
|
.idea
|
||||||
|
*.iml
|
||||||
|
out
|
||||||
|
gen
|
||||||
|
### Go template
|
||||||
|
# If you prefer the allow list template instead of the deny list, see community template:
|
||||||
|
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
|
||||||
|
#
|
||||||
# Binaries for programs and plugins
|
# Binaries for programs and plugins
|
||||||
*.exe
|
*.exe
|
||||||
*.exe~
|
*.exe~
|
||||||
@ -15,3 +26,6 @@
|
|||||||
# Dependency directories (remove the comment below to include it)
|
# Dependency directories (remove the comment below to include it)
|
||||||
# vendor/
|
# vendor/
|
||||||
|
|
||||||
|
# Go workspace file
|
||||||
|
go.work
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user