add default command to Taskfile

This commit is contained in:
juancwu 2026-01-26 18:20:18 +00:00
commit 76ee438f21

View file

@ -1,6 +1,9 @@
# yaml-language-server: $schema=https://taskfile.dev/schema.json
version: '3'
tasks:
default:
cmds:
- go run ./cmd/tui/main.go
build:
cmds:
- go build -o ./bin/tui ./cmd/tui/main.go