gospt/main.go

11 lines
114 B
Go
Raw Normal View History

2023-01-06 23:40:39 -08:00
package main
2023-01-13 22:27:38 -08:00
import (
"git.asdf.cafe/abs3nt/gospt/cmd"
2023-01-13 22:27:38 -08:00
)
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
}