contact-form/src/main.rs

13 lines
281 B
Rust
Raw Normal View History

2022-10-26 00:23:55 +00:00
mod routes;
mod states;
use rocket_dyn_templates::Template;
#[rocket::launch]
fn rocket() -> _ {
rocket::build()
.mount("/", rocket::routes![routes::index, routes::submit])
.manage(states::SharedCaptchaSolutions::new())
.attach(Template::fairing())
}