initial commit

This commit is contained in:
pika 2024-12-09 21:59:16 +01:00
commit 859c6d328e
8 changed files with 572 additions and 0 deletions

15
main.go Normal file
View file

@ -0,0 +1,15 @@
package main
import (
"log"
"os"
"ytgo/tui"
)
func main() {
if err := tui.Run(); err != nil {
log.Fatalf("Error running application: %v", err)
os.Exit(1)
}
}