andrewhowdencom-go
Installation
SKILL.md
Go
Follow Effective Go as the baseline.
Project Structure
We follow the standard layout. See Layout Reference for details.
- cmd/: Main applications.
- internal/: Private application logic.
Inlined Expertise: Common Patterns
1. Functional Options Pattern
Use for object construction with optional parameters.
type Server struct {
timeout time.Duration
}