chore: add options
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Andre Henriques 2023-07-10 11:43:14 +01:00
parent 2e86c05deb
commit 065d22d6f4

View File

@ -172,6 +172,12 @@ impl Fairing for CORS {
}
}
/// Catches all OPTION requests in order to get the CORS related Fairing triggered.
#[options("/<_..>")]
fn all_options() {
/* Intentionally left empty */
}
#[rocket::main]
async fn main() -> GResult {
println!("Program start");
@ -211,6 +217,7 @@ async fn main() -> GResult {
.mount(
"/",
routes![
all_options,
index,
quit,
reload,