gospt/main.go

11 lines
114 B
Go
Raw Normal View History

2023-01-07 07:40:39 +00:00
package main
2023-01-14 06:27:38 +00:00
import (
"git.asdf.cafe/abs3nt/gospt/cmd"
2023-01-14 06:27:38 +00:00
)
2023-01-07 07:40:39 +00:00
func main() {
2023-01-09 23:52:21 +00:00
defCmd := "tui"
cmd.Execute(defCmd)
2023-01-07 07:40:39 +00:00
}