From c4dad9e394b30d23f6f671067c4a448b5d037ad2 Mon Sep 17 00:00:00 2001 From: Damir Mukimov Date: Wed, 13 Aug 2025 07:49:49 +0200 Subject: [PATCH] =?UTF-8?q?docs:=20record=20cleanup=20=E2=80=94=20removed?= =?UTF-8?q?=20duplicate=20graphql/=20and=20legacy=20server=20helper?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TODO.md | 1 + go.mod | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/TODO.md b/TODO.md index 19f055d..e50313c 100644 --- a/TODO.md +++ b/TODO.md @@ -61,6 +61,7 @@ ## [ ] Code Quality & Architecture +- [x] Remove duplicate GraphQL folder and legacy server helper; keep single GraphQL layer under `graph/` for now - [x] **REFACTORED: Split linguistics/analyzer.go into focused components** (Completed) - [x] **COMPLETED: Clean NLP infrastructure and factory wiring** - [x] Ports for NLP capabilities with SRP/DRY boundaries diff --git a/go.mod b/go.mod index 5cfcfca..6eee6a7 100644 --- a/go.mod +++ b/go.mod @@ -8,6 +8,7 @@ require ( github.com/99designs/gqlgen v0.17.72 github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 github.com/golang-jwt/jwt/v5 v5.3.0 + github.com/hashicorp/golang-lru/v2 v2.0.7 github.com/hibiken/asynq v0.25.1 github.com/jonreiter/govader v0.0.0-20250429093935-f6505c8d03cc github.com/pemistahl/lingua-go v1.4.0 @@ -40,7 +41,6 @@ require ( github.com/go-viper/mapstructure/v2 v2.2.1 // indirect github.com/google/uuid v1.6.0 // indirect github.com/gorilla/websocket v1.5.0 // indirect - github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect github.com/jackc/pgpassfile v1.0.0 // indirect github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect github.com/jackc/pgx/v5 v5.7.4 // indirect