Initial commit

This commit is contained in:
Mester Gábor
2026-03-19 07:12:03 +01:00
commit 2dd6519168
25 changed files with 3645 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
package main
import (
"fmt"
"os"
"greq/internal/tui"
tea "github.com/charmbracelet/bubbletea"
)
// version is set at build time via -ldflags "-X main.version=..."
var version = "dev"
func main() {
p := tea.NewProgram(tui.New(), tea.WithAltScreen(), tea.WithMouseCellMotion())
if _, err := p.Run(); err != nil {
fmt.Fprintf(os.Stderr, "greq: %v\n", err)
os.Exit(1)
}
}