trifid/trifid-api/src/magic_link.rs

9 lines
190 B
Rust
Raw Normal View History

2023-04-02 19:47:50 +00:00
use std::error::Error;
use log::info;
pub fn send_magic_link(token: &str) -> Result<(), Box<dyn Error>> {
// TODO: actually do this
info!("sent magic link {}", token);
Ok(())
}