add async feature #1
@ -158,14 +158,9 @@ async fn read_from_db(id: u32) -> Option<Question> {
|
||||
id as usize - 1
|
||||
};
|
||||
|
||||
println!("{}", &index); // DEBUG
|
||||
|
||||
match reader.get(index).await {
|
||||
Ok(question) => Some(question),
|
||||
Err(e) => {
|
||||
println!("{:#?}", e); // DEBUG
|
||||
None
|
||||
}
|
||||
Err(_) => None
|
||||
}
|
||||
}
|
||||
async fn write_db() {
|
||||
|
Loading…
Reference in New Issue
Block a user