32 lines
482 B
Plaintext
32 lines
482 B
Plaintext
# Reference https://github.com/github/gitignore/blob/master/Go.gitignore
|
|
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.dylib
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.out
|
|
|
|
# Go workspace file
|
|
go.work
|
|
go.work.sum
|
|
|
|
# OS General
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
*.log
|
|
*.swp
|
|
.vscode/
|
|
.idea/
|
|
bin/
|
|
cert/
|
|
log
|
|
configs_prd
|
|
api/**/*.go
|
|
/cmd/server/wire_gen.go
|
|
/internal/conf/*.go
|
|
/third_party/swagger_ui/openapi.yaml |