no warngninsngs

This commit is contained in:
Ethan O'Brien
2024-05-24 13:00:12 -05:00
parent 1e9d0236be
commit ba0d38fb2d
7 changed files with 9 additions and 10 deletions

View File

@@ -3,13 +3,12 @@ use actix_web::{HttpRequest};
//todo
pub fn reward(req: HttpRequest) -> Option<JsonValue> {
pub fn reward(_req: HttpRequest) -> Option<JsonValue> {
Some(object!{
"reward_list": []
})
}
pub fn reward_post(req: HttpRequest, _body: String) -> Option<JsonValue> {
pub fn reward_post(_req: HttpRequest, _body: String) -> Option<JsonValue> {
Some(array![])
}