mirror of
https://github.com/aditya-K2/gspt.git
synced 2026-01-08 21:37:58 -05:00
18 lines
289 B
Go
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)
|
|
}
|
|
}
|