initial commit

This commit is contained in:
Henner Flick 2025-08-29 19:31:24 +02:00
commit a4f37af597
6 changed files with 398 additions and 0 deletions

46
.gitignore vendored Normal file
View file

@ -0,0 +1,46 @@
# Ignore the Go binary executables
/bin/
/obj/
# Go workspace file
go.work
# Go Modules and Dependency files
/vendor/
.golangci.yml
.golangci-lint-cache/
# IDE/Editor settings
.vscode/
.idea/
*.iml
# OS generated files
.DS_Store
Thumbs.db
# Test binary and coverage files
*.test
*.coverprofile
# Debugging files
*.log
*.out
# Go test binaries and profiles
profile/
# User-specific config files
.env
# Go vendor directory (if you use a vendoring strategy)
# /vendor
# Go build cache
/go-build/
# Other ignored files (e.g., CI/CD)
*.pid
*.swp