mirror of
https://github.com/issadarkthing/gomu.git
synced 2025-04-26 13:49:21 +08:00
19 lines
243 B
Go
19 lines
243 B
Go
// Copyright (C) 2020 Raziman
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/rivo/tview"
|
|
)
|
|
|
|
func main() {
|
|
os.Setenv("TEST", "false")
|
|
debugLog("App start")
|
|
args := getArgs()
|
|
readConfig(args)
|
|
app := tview.NewApplication()
|
|
start(app, args)
|
|
}
|