This commit is contained in:
2025-11-28 16:54:57 +00:00
parent 57c947df05
commit f40951a601
8 changed files with 135 additions and 3 deletions

15
tui/rest/init.go Normal file
View File

@@ -0,0 +1,15 @@
package rest
import "github.com/rivo/tview"
type Rest struct{}
func New() Rest {
return Rest{}
}
func (r Rest) Root() *tview.Box {
return tview.NewBox().
SetBorder(true).
SetTitle("Hello Rest")
}