feat(inventory-go): POST /admin/backfill-od recompute endpoint

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Erik 2026-07-15 08:04:00 +02:00
parent e07a9459cd
commit 3c0a8d9de8
2 changed files with 44 additions and 0 deletions

View file

@ -100,6 +100,7 @@ func main() {
mux.HandleFunc("POST /process-inventory", srv.handleProcessInventory)
mux.HandleFunc("POST /inventory/{character_name}/item", srv.handleUpsertItem)
mux.HandleFunc("DELETE /inventory/{character_name}/item/{item_id}", srv.handleDeleteItem)
mux.HandleFunc("POST /admin/backfill-od", srv.handleBackfillOD)
// Suitbuilder (port of suitbuilder.py router, mounted at /suitbuilder).
mux.HandleFunc("POST /suitbuilder/search", srv.handleSuitSearch)
mux.HandleFunc("GET /suitbuilder/characters", srv.handleSuitCharacters)