A community based topic aggregation platform built on atproto

fix: set go version to 1.24 for Docker compatibility

The local Go 1.25.1 is a pre-release version not available in Docker Hub.
Set minimum go version to 1.24 with toolchain directive for local dev.

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

Co-Authored-By: Claude <noreply@anthropic.com>

+4 -2
+4 -2
go.mod
··· 1 1 module Coves 2 2 3 - go 1.25 3 + go 1.24 4 + 5 + toolchain go1.25.1 4 6 5 7 require ( 6 8 github.com/bluesky-social/indigo v0.0.0-20251127021457-6f2658724b36 7 9 github.com/go-chi/chi/v5 v5.2.1 8 10 github.com/golang-jwt/jwt/v5 v5.3.0 11 + github.com/google/uuid v1.6.0 9 12 github.com/gorilla/websocket v1.5.3 10 13 github.com/hashicorp/golang-lru/v2 v2.0.7 11 14 github.com/lestrrat-go/jwx/v2 v2.0.12 ··· 28 31 github.com/go-logr/stdr v1.2.2 // indirect 29 32 github.com/goccy/go-json v0.10.2 // indirect 30 33 github.com/gogo/protobuf v1.3.2 // indirect 31 - github.com/google/uuid v1.6.0 // indirect 32 34 github.com/hashicorp/go-cleanhttp v0.5.2 // indirect 33 35 github.com/hashicorp/go-retryablehttp v0.7.5 // indirect 34 36 github.com/hashicorp/golang-lru v1.0.2 // indirect