gui/pkg/window/layout.go
Snider ad3c63f093 feat(window): add Window struct, options, and Manager with CRUD
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 12:05:37 +00:00

8 lines
223 B
Go

// pkg/window/layout.go
package window
// LayoutManager persists named window arrangements.
// Full implementation in Task 4.
type LayoutManager struct{}
func NewLayoutManager() *LayoutManager { return &LayoutManager{} }