Skip to content

Instantly share code, notes, and snippets.

@pxjohnny

pxjohnny/main.rs Secret

Last active March 27, 2021 11:38
#[launch]
fn rocket() -> Rocket {
rocket::ignite()
.mount("/", routes![root, static_files])
.mount("/api", routes![post_confession])
.attach(DBPool::fairing())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment