made code more readable
This commit is contained in:
parent
471dd2381e
commit
d19fb43ada
12
src/main.rs
12
src/main.rs
@ -25,8 +25,16 @@ struct PostTest<'r> {
|
|||||||
|
|
||||||
#[post("/post_test", data = "<test>")]
|
#[post("/post_test", data = "<test>")]
|
||||||
fn post_test(test: Json<PostTest<'_>>) {
|
fn post_test(test: Json<PostTest<'_>>) {
|
||||||
sql::post_test(test.test_type, test.test_length, test.test_time, test.test_seed, test.quote_id, test.wpm, test.accuracy, test.user_id)
|
sql::post_test(
|
||||||
.expect("error in posting test to tests table");
|
test.test_type,
|
||||||
|
test.test_length,
|
||||||
|
test.test_time,
|
||||||
|
test.test_seed,
|
||||||
|
test.quote_id,
|
||||||
|
test.wpm,
|
||||||
|
test.accuracy,
|
||||||
|
test.user_id
|
||||||
|
).expect("error in posting test to tests table");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[launch]
|
#[launch]
|
||||||
|
Loading…
Reference in New Issue
Block a user