# goget .gitignore — build artifacts, IDE files, OS files, and logs

# Build output
bin/

# Test artifacts
*.test
*.out
coverage.html

# Go workspace (go.work and go.work.sum)
go.work
go.work.sum

# Vendored dependencies (we use Go modules)
vendor/

# IDE
.idea/
.vscode/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Environment
.env
.env.local
.env.*.local

# Logs
*.log
