use std::error::Error; use log::info; pub fn send_magic_link(token: &str) -> Result<(), Box> { // TODO: actually do this info!("sent magic link {}", token); Ok(()) }