16 lines
160 B
Go
16 lines
160 B
Go
package fuzzyfinder
|
|
|
|
import (
|
|
"github.com/gdamore/tcell/v2"
|
|
)
|
|
|
|
type screen tcell.Screen
|
|
|
|
type terminal interface {
|
|
screen
|
|
}
|
|
|
|
type termImpl struct {
|
|
screen
|
|
}
|