mirror of
https://github.com/issadarkthing/gomu.git
synced 2025-05-02 22:17:09 +08:00
14 lines
113 B
Go
14 lines
113 B
Go
![]() |
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/rivo/tview"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
|
||
|
app := tview.NewApplication()
|
||
|
|
||
|
start(app)
|
||
|
|
||
|
}
|