Files
gspt/main.go
2023-04-20 15:03:45 +05:30

18 lines
289 B
Go

package main
import (
"github.com/aditya-K2/gspt/config"
"github.com/aditya-K2/gspt/spt"
"github.com/aditya-K2/gspt/ui"
)
func main() {
config.ReadConfig()
if err := spt.InitClient(); err != nil {
panic(err)
}
if err := ui.NewApplication().Run(); err != nil {
panic(err)
}
}