71a6bc4aa4
- 分类管理:支持分类的增删改查 - 单词管理:支持单词的增删改查,包含音标、释义、例句等字段 - 更新 README 项目说明 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
19 lines
478 B
Modula-2
19 lines
478 B
Modula-2
module github.com/fish/language/backend
|
|
|
|
go 1.25
|
|
|
|
require (
|
|
github.com/go-chi/chi/v5 v5.2.0
|
|
github.com/jackc/pgx/v5 v5.7.2
|
|
github.com/kelseyhightower/envconfig v1.4.0
|
|
)
|
|
|
|
require (
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
|
github.com/jackc/puddle/v2 v2.2.2 // indirect
|
|
golang.org/x/crypto v0.31.0 // indirect
|
|
golang.org/x/sync v0.10.0 // indirect
|
|
golang.org/x/text v0.21.0 // indirect
|
|
)
|