ignore: more metadata in app info

This commit is contained in:
adamdottv 2025-06-27 06:19:27 -05:00
commit 59b3268c64
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
6 changed files with 558 additions and 77 deletions

View file

@ -49,6 +49,8 @@ func main() {
logger := slog.New(slog.NewTextHandler(file, &slog.HandlerOptions{Level: slog.LevelDebug}))
slog.SetDefault(logger)
slog.Debug("TUI launched", "app", appInfo)
httpClient, err := client.NewClientWithResponses(url)
if err != nil {
slog.Error("Failed to create client", "error", err)
@ -66,7 +68,6 @@ func main() {
program := tea.NewProgram(
tui.NewModel(app_),
// tea.WithColorProfile(colorprofile.ANSI),
tea.WithAltScreen(),
tea.WithKeyboardEnhancements(),
tea.WithMouseCellMotion(),