fix(tui-go): go.mod directive 1.26 -> 1.24.2 (1.26 toolchain unreleased)

`go 1.26` is not a fetchable/released toolchain, so released Go cannot build the
module ("toolchain not available"). 1.24.2 is the minimum the deps require
(charmbracelet/x/ansi needs >= 1.24.2) and is a real toolchain; the directive is a
floor, so newer Go still works. Bump if a specific newer release is intended.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-20 16:07:36 +00:00
parent eff8f8dbdf
commit 1e6699a360
+1 -1
View File
@@ -1,6 +1,6 @@
module github.com/correx/tui-go
go 1.26
go 1.24.2
require (
github.com/charmbracelet/bubbletea v1.3.10