Add a report detail page.

This commit is contained in:
Eli Ribble 2025-11-05 21:37:11 +00:00
parent c99a5a3f62
commit 4eebb6b88a
No known key found for this signature in database
4 changed files with 153 additions and 0 deletions

View file

@ -60,6 +60,7 @@ func main() {
r.Get("/", getRoot)
r.Get("/qr-code/report/{code}", getQRCodeReport)
r.Get("/report", getReport)
r.Get("/report/{code}", getReportDetail)
r.Post("/signin", postSignin)
r.Get("/signup", getSignup)
r.Post("/signup", postSignup)