mirror of
https://github.com/issadarkthing/gomu.git
synced 2025-04-28 13:48:53 +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)
|
||
|
}
|