add my own session manager

This commit is contained in:
2026-01-24 11:17:24 +01:00
parent f12acdaf4f
commit eddff54729
599 changed files with 292374 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package fuzzyfinder
import (
"github.com/gdamore/tcell/v2"
)
type screen tcell.Screen
type terminal interface {
screen
}
type termImpl struct {
screen
}