mirror of
https://github.com/wagoodman/dive
synced 2026-03-15 06:45:49 +01:00
10 lines
239 B
Go
10 lines
239 B
Go
package viewmodel
|
|
|
|
import (
|
|
"github.com/wagoodman/dive/dive/image"
|
|
)
|
|
|
|
type LayerSelection struct {
|
|
Layer *image.Layer
|
|
BottomTreeStart, BottomTreeStop, TopTreeStart, TopTreeStop int
|
|
}
|