+27
.gitignore
+27
.gitignore
···
1
+
# ---> Go
2
+
# If you prefer the allow list template instead of the deny list, see community template:
3
+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
4
+
#
5
+
# Binaries for programs and plugins
6
+
*.exe
7
+
*.exe~
8
+
*.dll
9
+
*.so
10
+
*.dylib
11
+
12
+
# Test binary, built with `go test -c`
13
+
*.test
14
+
15
+
# Output of the go coverage tool, specifically when used with LiteIDE
16
+
*.out
17
+
18
+
# Dependency directories (remove the comment below to include it)
19
+
# vendor/
20
+
21
+
# Go workspace file
22
+
go.work
23
+
go.work.sum
24
+
25
+
# env file
26
+
.env
27
+