9 lines
106 B
Makefile
9 lines
106 B
Makefile
.PHONY: tui
|
|
|
|
tui:
|
|
python ./src/twitch_vod/tui.py
|
|
|
|
.PHONY: run
|
|
run:
|
|
fastapi dev ./src/twitch_vod/main.py
|