12 lines
209 B
Go
12 lines
209 B
Go
package ui
|
|
|
|
type layoutManager struct {
|
|
fileTreeSplitRatio float64
|
|
}
|
|
|
|
func newLayoutManager(fileTreeSplitRatio float64) *layoutManager {
|
|
return &layoutManager{
|
|
fileTreeSplitRatio: fileTreeSplitRatio,
|
|
}
|
|
}
|