aboutsummaryrefslogtreecommitdiff
path: root/examples/binary.rs
blob: 9496810830eb509337b00821cfef93dadd34a64c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! `cargo run --example binary --features response-macros`
//!
//! Optionally, you can run this example with the `auto-deduce-mime` feature
//! enabled.

#[windmark::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
  let mut router = windmark::router::Router::new();

  router.set_private_key_file("windmark_private.pem");
  router.set_certificate_file("windmark_public.pem");
  #[cfg(feature = "auto-deduce-mime")]
  router.mount("/automatic", {
    windmark::binary_success!(include_bytes!("../LICENSE"))
  });
  router.mount("/specific", {
    windmark::binary_success!(include_bytes!("../LICENSE"), "text/plain")
  });
  router.mount("/direct", {
    windmark::binary_success!("This is a string.", "text/plain")
  });

  router.run().await
}