29 lines
379 B
Go
29 lines
379 B
Go
|
package console
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
ui "github.com/sqshq/termui"
|
||
|
"log"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
RenderRate = 30 * time.Millisecond
|
||
|
Title = "vcmd"
|
||
|
)
|
||
|
|
||
|
type Console struct{}
|
||
|
|
||
|
func (self *Console) Init() {
|
||
|
|
||
|
fmt.Printf("\033]0;%s\007", Title)
|
||
|
|
||
|
if err := ui.Init(); err != nil {
|
||
|
log.Fatalf("failed to initialize termui: %v", err)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (self *Console) Close() {
|
||
|
ui.Close()
|
||
|
}
|