gomu/gomu.go
raziman 5e35308a0e set player.Run to accept AudioFile struct as argument
set player.Run to accept AudioFile struct as argument
2020-07-13 14:43:34 +08:00

22 lines
196 B
Go

// Copyright (C) 2020 Raziman
package main
import (
"os"
"github.com/rivo/tview"
)
func main() {
os.Setenv("TEST", "false")
readConfig()
app := tview.NewApplication()
start(app)
}