mirror of
https://github.com/aditya-K2/gspt.git
synced 2026-01-10 06:18:03 -05:00
16 lines
236 B
Go
16 lines
236 B
Go
package main
|
|
|
|
import (
|
|
"github.com/aditya-K2/gspt/spt"
|
|
"github.com/aditya-K2/gspt/ui"
|
|
)
|
|
|
|
func main() {
|
|
if err := spt.InitClient(); err != nil {
|
|
panic(err)
|
|
}
|
|
if err := ui.NewApplication().App.Run(); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|