gomu/gomu.go

24 lines
226 B
Go
Raw Normal View History

2020-06-22 00:05:56 +08:00
// Copyright (C) 2020 Raziman
2020-06-18 14:30:20 +08:00
package main
import (
"os"
2020-06-18 14:30:20 +08:00
"github.com/rivo/tview"
)
func main() {
os.Setenv("TEST", "false")
2020-07-18 15:43:20 +08:00
args := getArgs()
readConfig(args)
2020-06-24 20:09:47 +08:00
2020-06-18 14:30:20 +08:00
app := tview.NewApplication()
2020-07-18 15:43:20 +08:00
start(app, args)
2020-06-18 14:30:20 +08:00
}