fix(go.mod): correct invalid Go version format from 1.25.7 to 1.23

The go.mod file had an invalid Go version '1.25.7' which caused
'go mod tidy' to fail on Windows and other platforms. Go version
directive must match format 1.XX (e.g., 1.23), not semantic versioning.

Fixes #1348

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
曾文锋0668000834 2026-03-12 20:54:04 +08:00
parent 95716b106b
commit bc91d33e01

2
go.mod
View file

@ -1,6 +1,6 @@
module github.com/sipeed/picoclaw
go 1.25.7
go 1.23
require (
github.com/adhocore/gronx v1.19.6