Skip to content
Snippets Groups Projects
Select Git revision
  • b8b2566899b1fa572ffee7ea71d563388f4c5080
  • master default protected
2 results

bib_analysis.py

Blame
  • ui_log.go 193 B
    package statusscreen
    
    import "github.com/rivo/tview"
    
    type UILog struct {
    	Primitive *tview.Grid
    }
    
    func NewUILog() *UILog {
    	uiLog := &UILog{
    		Primitive: tview.NewGrid(),
    	}
    
    	return uiLog
    }