Canonical guidance

Use when

Avoid

Preferred pattern

type MetricsServer struct {
	*http.Server
	Log *slog.Logger
}

Anti-pattern

Explanation: This anti-pattern is tempting because it looks concise, but it hides which behavior is truly owned by the outer type.

Why

Related pages

Sources