Files
2026-01-24 11:17:24 +01:00

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
}