Skip to content

Commit 0241198

Browse files
committed
Initial commit
0 parents  commit 0241198

164 files changed

Lines changed: 138617 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Binaries
2+
/playground
3+
playground.exe
4+
*.exe
5+
*.exe~
6+
*.dll
7+
*.so
8+
*.dylib
9+
*.test
10+
*.out
11+
12+
# Go workspace file
13+
go.work
14+
15+
# IDE files
16+
.idea/
17+
.vscode/
18+
*.swp
19+
*.swo
20+
*~
21+
.DS_Store
22+
23+
# Build artifacts
24+
dist/
25+
build/
26+
bin/
27+
28+
# Test coverage
29+
*.coverprofile
30+
coverage.html
31+
coverage.out
32+
33+
# Dependency directories
34+
vendor/
35+
36+
# Local configuration (user-specific)
37+
.playground/
38+
*.local.json
39+
40+
# Temporary files
41+
*.tmp
42+
*.log
43+
*.cache
44+
45+
# Generated files (if any)
46+
*.generated.go
47+
48+
# OpenAPI cache (user-specific)
49+
.playground-openapi-cache.json
50+
51+
# State files (user-specific)
52+
*.state.json
53+
state.json
54+
55+
# Example config (keep the example, ignore user copies)
56+
playground.config.json
57+
!playground.config.example.json

0 commit comments

Comments
 (0)