Skip to content

Commit 5346312

Browse files
committed
webhook secret logic
1 parent 8bbb258 commit 5346312

File tree

11 files changed

+2404
-1
lines changed

11 files changed

+2404
-1
lines changed

examples-copier/.gitignore

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Binaries
2+
examples-copier
3+
*.exe
4+
*.exe~
5+
*.dll
6+
*.so
7+
*.dylib
8+
9+
# Test binary, built with `go test -c`
10+
*.test
11+
12+
# Output of the go coverage tool
13+
*.out
14+
15+
# Dependency directories
16+
vendor/
17+
18+
# Go workspace file
19+
go.work
20+
21+
# Environment files with secrets
22+
env.yaml
23+
.env
24+
.env.local
25+
.env.production
26+
.env.*.local
27+
28+
# Private keys
29+
*.pem
30+
*.key
31+
32+
# IDE files
33+
.idea/
34+
.vscode/
35+
*.swp
36+
*.swo
37+
*~
38+
39+
# OS files
40+
.DS_Store
41+
Thumbs.db
42+
43+
# Logs
44+
*.log
45+
46+
# Temporary files
47+
tmp/
48+
temp/
49+

0 commit comments

Comments
 (0)