Some more (Messy) star event code

This commit is contained in:
Ethan O'Brien
2024-07-21 15:14:05 -05:00
parent 3a83ae3ec9
commit 58ca6b01b7
3 changed files with 121 additions and 59 deletions

View File

@@ -82,8 +82,8 @@ async fn api_req(req: HttpRequest, body: String) -> HttpResponse {
"/api/event/ranking" => event::ranking(req, body),
"/api/event_star_live/change_target_music" => event::change_target_music(req, body),
"/api/event_star_live/start" => live::event_start(req, body),
"/api/event_star_live/end" => live::event_end(req, body),
//"/api/event_star_live/skip" => live::event_skip(req, body),
"/api/event_star_live/end" => event::event_end(req, body),
"/api/event_star_live/skip" => event::event_skip(req, body),
"/api/live/start" => live::start(req, body),
"/api/live/end" => live::end(req, body),
"/api/live/skip" => live::skip(req, body),