Implement clear rate generation

This commit is contained in:
Ethan O'Brien
2024-04-29 06:47:34 -05:00
parent bf637e6107
commit f807ddb32c
4 changed files with 257 additions and 13 deletions

View File

@@ -146,7 +146,7 @@ async fn live_end(req: HttpRequest, body: String) -> HttpResponse { router::live
async fn live_retire(req: HttpRequest, body: String) -> HttpResponse { router::live::retire(req, body) }
#[get("/api/live/clearRate")]
async fn live_clearrate(req: HttpRequest) -> HttpResponse { router::live::clearrate(req) }
async fn live_clearrate(req: HttpRequest) -> HttpResponse { router::clear_rate::clearrate(req) }
#[post("/api/live/continue")]
async fn live_continue(req: HttpRequest, body: String) -> HttpResponse { router::live::continuee(req, body) }