Add initial Go server skeleton with HTTP handlers, middleware, job runner, and stubs

This commit is contained in:
Dev
2025-12-13 15:18:04 +00:00
commit 61570cae23
28 changed files with 921 additions and 0 deletions

8
internal/http/README.md Normal file
View File

@@ -0,0 +1,8 @@
This folder contains HTTP handlers, router registration, and middleware.
Key files:
- `router.go` - registers routes and APIs.
- `handlers.go` - small HTMX-based handlers for the dashboard and API.
- `middleware.go` - request id, logging, placeholder auth and CSRF.
Handlers should accept `*App` struct for dependency injection.