use std::collections::HashMap; use warp::{Rejection, Reply}; pub async fn login(form: HashMap) -> Result { // TODO: Accept 'username' and 'password', I guess. Ok("Hello!".to_string()) }