Add ability to get item list

This commit is contained in:
Ethan O'Brien
2026-02-06 14:03:05 -06:00
parent db46013ee0
commit f4fcbf30ed
3 changed files with 1059 additions and 5 deletions

View File

@@ -219,6 +219,7 @@ pub async fn request(req: HttpRequest, body: String) -> HttpResponse {
"/api/webui/listCards" => webui::get_card_info(req),
"/api/webui/listMusic" => webui::get_music_info(req),
"/api/webui/listLoginBonus" => webui::list_login_bonus(req),
"/api/webui/listItems" => webui::list_items(req),
_ => api_req(req, body).await
}
}