Initial Commit

This commit is contained in:
Salastil
2025-10-20 03:42:09 -04:00
parent 0bd7b049c5
commit ffb667be53
5 changed files with 525 additions and 0 deletions

15
main.go Normal file
View File

@@ -0,0 +1,15 @@
package main
import (
"log"
"os"
"github.com/Salastil/streamed-tui/internal"
)
func main() {
if err := internal.Run(); err != nil {
log.Println("error:", err)
os.Exit(1)
}
}