Skip to content
Snippets Groups Projects

V.0.1.0 Codename Threadbare

Closed Ghost User requested to merge v.0.1.0-codename-threadbare into master
10 files
+ 76
33
Compare changes
  • Side-by-side
  • Inline
Files
10
package app
package app
import "github.com/rivo/tview"
import (
 
"github.com/rivo/tview"
 
)
type view interface {
type view interface {
GetContent() tview.Primitive
GetContent() tview.Primitive
@@ -17,6 +19,7 @@ func NewApp() *App {
@@ -17,6 +19,7 @@ func NewApp() *App {
a := &App{
a := &App{
app: tview.NewApplication(),
app: tview.NewApplication(),
}
}
 
return a
return a
}
}
Loading