feat(server): Go 模块骨架 + 工具链 [tsk_L2k2VrEujof8]

新建 server/ Go 模块:
- go.mod: module github.com/wangjia/pangolin/server, Go 1.22
  依赖: go-chi/chi/v5, google/uuid
- tools.go: //go:build tools 锁定 oapi-codegen / golang-migrate 版本
- cmd/server/main.go: chi router + GET /healthz → {"status":"ok"},监听 :8080
- cmd/migrate/main.go: 占位入口(实逻辑归 1e)
- internal/{config,store,apierr,idgen,auth,codes,devices,nodes,usage,admin}/doc.go
  各包职责说明
- Makefile: build/test/vet/lint/generate/migrate-up/migrate-down
- .golangci.yml: govet/errcheck/staticcheck/revive/gofmt 基线
- README.md: 定位 + 目录树 + make 入口说明
- setup.sh: 首次 go mod tidy 引导脚本(go.sum 需运行后生成)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
wangjia
2026-06-13 01:28:37 +08:00
parent a642bf16a2
commit 1629385c70
18 changed files with 225 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
module github.com/wangjia/pangolin/server
go 1.22
require (
github.com/go-chi/chi/v5 v5.2.1
github.com/google/uuid v1.6.0
)