This commit is contained in:
Saeed Afzal
2025-11-28 14:32:44 +00:00
committed by Saeed Afzal
parent 6a7524befb
commit 7409d09f57
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")
}