Files
aicyclingcoach-go/internal/tui/layout/layout.go
2025-09-17 17:30:18 -07:00

14 lines
165 B
Go

package layout
type Layout struct {
Width int
Height int
}
func NewLayout(width, height int) *Layout {
return &Layout{
Width: width,
Height: height,
}
}