9 lines
135 B
Rust
9 lines
135 B
Rust
mod email;
|
|
mod handlers;
|
|
mod rate_limit;
|
|
mod serve;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
serve::run().await.expect("server error");
|
|
}
|