mirror of
https://github.com/wagoodman/dive
synced 2026-03-15 23:05:50 +01:00
10 lines
134 B
Go
10 lines
134 B
Go
package layout
|
|
|
|
import (
|
|
"github.com/wagoodman/dive/runtime/ui/view"
|
|
)
|
|
|
|
type View interface {
|
|
view.Identifiable
|
|
view.Dimensional
|
|
}
|