This commit is contained in:
Gabe Farrell 2026-01-12 13:51:12 -05:00
parent e45099c71a
commit c8b1bd3576
8 changed files with 564 additions and 0 deletions

View file

@ -55,6 +55,7 @@ func bindRoutes(
r.Get("/search", handlers.SearchHandler(db))
r.Get("/aliases", handlers.GetAliasesHandler(db))
r.Get("/summary", handlers.SummaryHandler(db))
r.Get("/interest", handlers.GetInterestHandler(db))
})
r.Post("/logout", handlers.LogoutHandler(db))
if !cfg.RateLimitDisabled() {