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