Major changes: - Add Go backend (backend/) with microservices architecture - Enhanced master-agents-svc: reranker, content-classifier, stealth-crawler, proxy-manager, media-search, fastClassifier, language detection - New web-svc widgets: KnowledgeCard, ProductCard, ProfileCard, VideoCard, UnifiedCard, CardGallery, InlineImageGallery, SourcesPanel, RelatedQuestions - Improved discover-svc with discover-db integration - Docker deployment improvements (Caddyfile, vendor.sh, BUILD.md) - Library-svc: project_id schema migration - Remove deprecated finance-svc and travel-svc - Localization improvements across services Made-with: Cursor
44 lines
1.5 KiB
Modula-2
44 lines
1.5 KiB
Modula-2
module github.com/gooseek/backend
|
|
|
|
go 1.22
|
|
|
|
require (
|
|
github.com/gofiber/fiber/v2 v2.52.0
|
|
github.com/golang-jwt/jwt/v5 v5.2.1
|
|
github.com/google/uuid v1.6.0
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/ledongthuc/pdf v0.0.0-20240201131950-da5b75280b06
|
|
github.com/lib/pq v1.10.9
|
|
github.com/minio/minio-go/v7 v7.0.70
|
|
github.com/redis/go-redis/v9 v9.4.0
|
|
github.com/robfig/cron/v3 v3.0.1
|
|
github.com/sashabaranov/go-openai v1.20.0
|
|
go.uber.org/zap v1.27.0
|
|
golang.org/x/sync v0.6.0
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.1.0 // indirect
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/goccy/go-json v0.10.2 // indirect
|
|
github.com/klauspost/compress v1.17.6 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-runewidth v0.0.15 // indirect
|
|
github.com/minio/md5-simd v1.1.2 // indirect
|
|
github.com/rivo/uniseg v0.4.6 // indirect
|
|
github.com/rs/xid v1.5.0 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasthttp v1.52.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
golang.org/x/crypto v0.21.0 // indirect
|
|
golang.org/x/net v0.23.0 // indirect
|
|
golang.org/x/sys v0.18.0 // indirect
|
|
golang.org/x/text v0.14.0 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
)
|