Initial add backend stuff

This commit is contained in:
2026-07-08 15:45:16 -04:00
commit a7964f9410
89 changed files with 25924 additions and 0 deletions

5
httputil/doc.go Normal file
View File

@@ -0,0 +1,5 @@
// Package httputil holds small, dependency-free HTTP helpers shared across apps:
// CORS middleware, JSON response helpers, and user-agent parsing. Anything that
// needs the application's auth/session/permission model lives app-side (in
// internal/httpauth), not here, so this package never imports app code.
package httputil