feat: add project and email service

This commit is contained in:
Jet Pham 2026-03-11 13:00:51 -07:00 committed by Jet
parent 99715f6105
commit f48390b15e
29 changed files with 2631 additions and 63 deletions

9
api/src/main.rs Normal file
View file

@ -0,0 +1,9 @@
mod email;
mod handlers;
mod rate_limit;
mod serve;
#[tokio::main]
async fn main() {
serve::run().await.expect("server error");
}