Skip to content

Commit 97c1991

Browse files
authored
Merge pull request #1 from osspkg/dev
add funnel, limiter, base sync struct
2 parents 1d1de7d + 7fe55a5 commit 97c1991

13 files changed

+492
-258
lines changed

.gitignore

100644100755
+28-13
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,38 @@
1-
# If you prefer the allow list template instead of the deny list, see community template:
2-
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
3-
#
4-
# Binaries for programs and plugins
1+
2+
.tools/
3+
4+
bin/
5+
6+
vendor/
7+
8+
build/
9+
10+
.idea/
11+
12+
.vscode/
13+
14+
coverage.txt
15+
16+
coverage.out
17+
518
*.exe
19+
620
*.exe~
21+
722
*.dll
23+
824
*.so
25+
926
*.dylib
1027

11-
# Test binary, built with `go test -c`
28+
*.db
29+
30+
*.db-journal
31+
32+
*.mmdb
33+
1234
*.test
1335

14-
# Output of the go coverage tool, specifically when used with LiteIDE
1536
*.out
1637

17-
# Dependency directories (remove the comment below to include it)
18-
# vendor/
19-
20-
# Go workspace file
21-
go.work
22-
go.work.sum
23-
.tools/
38+
.env

0 commit comments

Comments
 (0)