gospt/main.go

9 lines
88 B
Go
Raw Normal View History

2023-01-06 23:40:39 -08:00
package main
2023-01-09 15:52:21 -08:00
import "gospt/cmd"
2023-01-06 23:40:39 -08:00
func main() {
2023-01-09 15:52:21 -08:00
defCmd := "tui"
cmd.Execute(defCmd)
2023-01-06 23:40:39 -08:00
}