Update Claude to fix reference to sqlite

This commit is contained in:
2026-03-05 14:49:15 -04:00
parent 25fd4a8be7
commit dc7be0c53a
3 changed files with 8 additions and 2 deletions

View File

@@ -34,7 +34,7 @@ Domain-based packaging under `internal/` — each domain owns its models, store
| `internal/checkin` | Check-in / check-out and history |
| `internal/notification` | Per-volunteer notifications |
| `internal/auth` | JWT issuance (`auth.Service`) and `HashPassword` |
| `internal/db` | SQLite open + one-shot schema migration (`db.Migrate`) |
| `internal/db` | MySQL open + one-shot schema migration (`db.Migrate`) |
| `internal/respond` | `respond.JSON` / `respond.Error` helpers |
| `internal/server` | Wires all handlers into a chi router; serves static files at `/` |
| `internal/server/middleware` | `Authenticate` (JWT) and `RequireAdmin` middleware; `ClaimsFromContext` |